aboutsummaryrefslogtreecommitdiff
path: root/Gem/develop/include/Gem/Utils/GemString.h
diff options
context:
space:
mode:
authorTravis CI <zmoelnig@travis-ci.umlaeute.mur.at>2017-11-27 21:54:03 +0000
committerTravis CI <zmoelnig@travis-ci.umlaeute.mur.at>2017-11-27 21:54:03 +0000
commitb24636bdefe23c26864e2efaaf05e016208af084 (patch)
tree975004f074d1a068c617e081e3f19aecae4295dd /Gem/develop/include/Gem/Utils/GemString.h
parentc0035706f38fb8e85069ec55b53910b810a59f2c (diff)
Gem ebc50987f9794b71fc512d52b46e5c78d6e9218f linux/amd64
built 'noexcept:ebc50987f9794b71fc512d52b46e5c78d6e9218f' for linux/amd64
Diffstat (limited to 'Gem/develop/include/Gem/Utils/GemString.h')
-rw-r--r--Gem/develop/include/Gem/Utils/GemString.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Gem/develop/include/Gem/Utils/GemString.h b/Gem/develop/include/Gem/Utils/GemString.h
index d134f50..d767bf0 100644
--- a/Gem/develop/include/Gem/Utils/GemString.h
+++ b/Gem/develop/include/Gem/Utils/GemString.h
@@ -28,7 +28,8 @@ namespace gem {
GEM_EXTERN std::wstring getVisualLine(const std::wstring&);
/* convert a UTF-8 string to wchar */
- GEM_EXTERN std::wstring toWstring(const char*str) throw(int);
+ // throws 'int', holding the position of the char that couldn't be converted
+ GEM_EXTERN std::wstring toWstring(const char*str);
};
};