aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/locale_independent_float.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/locale_independent_float.hpp')
-rw-r--r--src/utils/locale_independent_float.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/utils/locale_independent_float.hpp b/src/utils/locale_independent_float.hpp
index f3674695..82801868 100644
--- a/src/utils/locale_independent_float.hpp
+++ b/src/utils/locale_independent_float.hpp
@@ -37,7 +37,7 @@ namespace usdx
float value;
public:
LocaleIndependentFloat();
- LocaleIndependentFloat(std::wstring& value);
+ LocaleIndependentFloat(std::string& value);
virtual ~LocaleIndependentFloat();
@@ -46,11 +46,11 @@ namespace usdx
LocaleIndependentFloat& operator= (const LocaleIndependentFloat& value);
LocaleIndependentFloat& operator= (const float& vaule);
- LocaleIndependentFloat& operator= (std::wstring& vaule);
+ LocaleIndependentFloat& operator= (std::string& vaule);
};
- std::wistream& operator>> (std::wistream& is, LocaleIndependentFloat& float_value);
- std::wistream& operator>> (std::wistream& is, LocaleIndependentFloat* float_value);
+ std::istream& operator>> (std::istream& is, LocaleIndependentFloat& float_value);
+ std::istream& operator>> (std::istream& is, LocaleIndependentFloat* float_value);
};