We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe25a35 commit 4ccb3a6Copy full SHA for 4ccb3a6
include/yaml-cpp/fptostring.h
@@ -8,9 +8,9 @@
8
9
namespace YAML {
10
// "precision = 0" refers to shortest known unique representation of the value
11
-std::string FpToString(float v, size_t precision = 0);
12
-std::string FpToString(double v, size_t precision = 0);
13
-std::string FpToString(long double v, size_t precision = 0);
+YAML_CPP_API std::string FpToString(float v, size_t precision = 0);
+YAML_CPP_API std::string FpToString(double v, size_t precision = 0);
+YAML_CPP_API std::string FpToString(long double v, size_t precision = 0);
14
}
15
16
#endif
0 commit comments