Skip to content

Commit

Permalink
Try to fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
sgallou committed Jan 8, 2025
1 parent 14878a2 commit ec5893c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ namespace OpenZWave
#if __cplusplus==201103L || __APPLE__
return to_string(x);
#else
return static_cast< std::ostringstream & >( ( std::ostringstream() << std::dec << x ) ).str();
return (std::ostringstream() << std::dec << x).str();
#endif
}

Expand Down

0 comments on commit ec5893c

Please sign in to comment.