Skip to content

Commit

Permalink
Merge pull request #126 from godardma/master
Browse files Browse the repository at this point in the history
corrected VIBES C++ API resolution
  • Loading branch information
SimonRohou authored Aug 29, 2024
2 parents 01f15f8 + 53cb6ad commit c41db75
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions client-api/C++/src/vibes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
#include <cstdlib>
#include <cstdio>
#include <cassert>

#include <limits>
#include <iomanip>
//
// Vibes properties key,value system implementation
//
Expand All @@ -38,7 +39,7 @@ namespace vibes {
case vt_integer:
ss<<_integer; break;
case vt_decimal:
ss<<_decimal; break;
ss<< std::setprecision(std::numeric_limits<double>::digits10) <<_decimal; break;
case vt_string:
ss<<'"'<<_string<<'"'; break;
case vt_array:
Expand Down

0 comments on commit c41db75

Please sign in to comment.