X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FLibraries%2Flibc%2B%2B.so_src%2Finclude_exp%2Fstdexcept;fp=Usermode%2FLibraries%2Flibc%2B%2B.so_src%2Finclude_exp%2Fstdexcept;h=aea1afd3e2002506058f6006bf73cc3d0c42e43d;hb=2f3e82a7b2847e6ff7d65e73295bf3d6469236ab;hp=f9e3e3e8ae82f950da45b6753df2e41a07f99ffb;hpb=ce7b4832233f024983d7915f9c21cdd9b9fb4785;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