projects
/
profile
/
mobile
/
apps
/
native
/
accessibility-setting.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
73473fa
)
Fix for unused precision variable
author
Oskar Chodowicz
<o.chodowicz@partner.samsung.com>
Wed, 20 Nov 2019 15:43:37 +0000
(16:43 +0100)
committer
Jongmin Lee
<jm105.lee@samsung.com>
Sat, 11 Jan 2020 08:59:19 +0000
(17:59 +0900)
Change-Id: I49b018d3b31353d5e9e34ec954a014751031d7d8
src/utils/utils.hpp
patch
|
blob
|
history
diff --git
a/src/utils/utils.hpp
b/src/utils/utils.hpp
index ac3d3b156f7abec5a9da43c0e56dbaf5a0ed6627..f92c7eb1cb6a7544cf60c6339934420b7d660cc9 100644
(file)
--- a/
src/utils/utils.hpp
+++ b/
src/utils/utils.hpp
@@
-71,7
+71,7
@@
namespace utils
inline std::string doubleToString(double val, size_t precision)
{
std::ostringstream out;
- out.precision(
1
);
+ out.precision(
precision
);
out << std::fixed << val;