We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, all
When build code ,got this error: ,bug use g++ -fpermissive test.cpp can build success and work success, how to fix this bug
g++ -fpermissive test.cpp
The follow is my code : ` #include #include #include <nlohmann/json.hpp>
using namespace nlohmann;
int main() { constexpr auto jsfile = "/home/parallels/nlohmanntest/sensors.json"; std::ifstream jsonFile(jsfile); if (!jsonFile.is_open()){ std::cout << "Unable to open json file" << std::endl; } auto sensors = json::parse(jsonFile, nullptr, false); if (sensors.is_discarded()){ std::cout << "Invalid json - parse failed" << std::endl; }
for (const auto& sensor : sensors){ const json newType = (long int)130; sensor["sensorType"] = newType; } jsonFile.close(); std::ofstream newFile(jsfile, std::ios::trunc | std::ios::out | std::ios::in); newFile << sensors.dump(4) << std::endl ; return 0;
} ` thanks a lot~~
The text was updated successfully, but these errors were encountered:
I find the error : for (const auto& sensor : sensors) ==> for (auto& sensor : sensors), so close the issue
for (const auto& sensor : sensors)
for (auto& sensor : sensors)
Sorry, something went wrong.
No branches or pull requests
Hi, all
When build code ,got this error: ,bug use
g++ -fpermissive test.cpp
can build success and work success, how to fix this bugThe follow is my code :
`
#include
#include
#include <nlohmann/json.hpp>
using namespace nlohmann;
int main()
{
constexpr auto jsfile = "/home/parallels/nlohmanntest/sensors.json";
std::ifstream jsonFile(jsfile);
if (!jsonFile.is_open()){
std::cout << "Unable to open json file" << std::endl;
}
auto sensors = json::parse(jsonFile, nullptr, false);
if (sensors.is_discarded()){
std::cout << "Invalid json - parse failed" << std::endl;
}
}
`
thanks a lot~~
The text was updated successfully, but these errors were encountered: