Skip to content

Commit

Permalink
Merge pull request IntelRealSense#6133 from nohayassin/visual_2019_co…
Browse files Browse the repository at this point in the history
…mpilation_fix

Visual Studio 2019 compilation fix
  • Loading branch information
dorodnic authored Mar 26, 2020
2 parents 603ce9e + aa8a92c commit 31cccea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/rs-config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ config_file::config_file(std::string filename)
auto j = json::parse(str);
for (json::iterator it = j.begin(); it != j.end(); ++it)
{
_values[it.key()] = it.value();
_values[it.key()] = it.value().get<std::string>();
}
}
catch(...)
Expand Down

0 comments on commit 31cccea

Please sign in to comment.