-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Library provides template arg for string_type but assumes std::string in some places #2059
Comments
It assumes that |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
That sounds like a good idea. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
I'm using json object with Electronic Arts' EASTL library, which provides high performance implementations of std containers. I use the following typedef:
where stdstring is eastl::string, which is their version of std::string. Then throughout my code, I just always use stdjson type. This works great, except for when json code assumes std::string. For example, this code:
fails to compile because of this code in iteration_proxy.hpp:
which assumes std::string is the string_type. I'm using Visual Studio 2019 on Windows 10 using the latest release of json.
The text was updated successfully, but these errors were encountered: