chadaustin / sajson

Lightweight, extremely high-performance JSON parser for C++11
MIT License
565 stars 41 forks source link

Renamed ERROR_SUCCESS to ERROR_NO_ERROR so it doesn't clash with Wind… #43

Closed iboB closed 6 years ago

iboB commented 6 years ago

…ows.h macro. Fixes #40

chadaustin commented 6 years ago

I wonder if it's worth adding a backwards compatibility definition or something like:

#ifndef ERROR_SUCCESS
ERROR_SUCCESS = ERROR_NO_ERROR,
#endif