X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;ds=inline;f=Usermode%2FLibraries%2Flibc%2B%2B.so_src%2Finclude_exp%2Fstdexcept;h=aea1afd3e2002506058f6006bf73cc3d0c42e43d;hb=c55ececc6533d5e1e72adea971219bf701960336;hp=f9e3e3e8ae82f950da45b6753df2e41a07f99ffb;hpb=a7880f755a4f48b2254616ff761ba5fecbf790a7;p=tpg%2Facess2.git diff --git a/Usermode/Libraries/libc++.so_src/include_exp/stdexcept b/Usermode/Libraries/libc++.so_src/include_exp/stdexcept index f9e3e3e8..aea1afd3 100644 --- a/Usermode/Libraries/libc++.so_src/include_exp/stdexcept +++ b/Usermode/Libraries/libc++.so_src/include_exp/stdexcept @@ -16,14 +16,14 @@ class logic_error: public exception { public: - explicit logic_error(const basic_string& what_arg); + explicit logic_error(const string& what_arg); }; class runtime_error: public exception { public: - explicit runtime_error(const basic_string& what_arg); + explicit runtime_error(const string& what_arg); }; class out_of_range: @@ -33,7 +33,7 @@ public: explicit out_of_range(const string& what_arg); }; -} // namespace std +}; // namespace std #endif