summaryrefslogtreecommitdiffstats
path: root/src/uscxml
diff options
context:
space:
mode:
authoralexzhornyak <alexander.zhornyak@gmail.com>2017-05-10 22:10:36 (GMT)
committeralexzhornyak <alexander.zhornyak@gmail.com>2017-05-10 22:10:36 (GMT)
commit82bbbd94d67aa34db489622ea4020f588de9d53b (patch)
treefa107097507a507665ea509e3ae8fa850561d7a6 /src/uscxml
parent5083ea697c263a507341c98c5dadbb23953bd4fb (diff)
downloaduscxml-82bbbd94d67aa34db489622ea4020f588de9d53b.zip
uscxml-82bbbd94d67aa34db489622ea4020f588de9d53b.tar.gz
uscxml-82bbbd94d67aa34db489622ea4020f588de9d53b.tar.bz2
No need to export header template functions
Diffstat (limited to 'src/uscxml')
-rw-r--r--src/uscxml/util/Convenience.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uscxml/util/Convenience.h b/src/uscxml/util/Convenience.h
index 98c4220..35abf12 100644
--- a/src/uscxml/util/Convenience.h
+++ b/src/uscxml/util/Convenience.h
@@ -29,14 +29,14 @@ namespace uscxml {
inline bool isnan(double x);
// see http://stackoverflow.com/questions/228005/alternative-to-itoa-for-converting-integer-to-string-c
-template <typename T> std::string USCXML_API toStr(T tmp) {
+template <typename T> std::string toStr(T tmp) {
std::ostringstream outSS;
outSS.precision(std::numeric_limits<double>::digits10 + 1);
outSS << tmp;
return outSS.str();
}
-template <typename T> T USCXML_API strTo(std::string tmp) {
+template <typename T> T strTo(std::string tmp) {
T output;
std::istringstream in(tmp);
in >> output;