commit c15c99919bccc2307f6cc2d4adc97c4285662d07 parent c28e1186d4c1d5520acebc97c4ba2baba1e05b71 Author: Adam Malone <[email protected]> Date: Tue, 11 Dec 2018 16:44:23 -0600 hopefully cross platform to_string for display of active float value Diffstat:
M | src/dtpulse.cpp | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/dtpulse.cpp b/src/dtpulse.cpp @@ -426,7 +426,7 @@ std::string AbsoluteSequence::getWorkingStepDisplay() { return str; } else { - return std::to_string(exactFloats[stepIndex - 52]); + return std::to_string((long double) exactFloats[stepIndex - 52]); } }