diff --git a/_unit_tests_2compat_8hpp_source.html b/_unit_tests_2compat_8hpp_source.html
index bf9af8f38..2c3616c79 100644
--- a/_unit_tests_2compat_8hpp_source.html
+++ b/_unit_tests_2compat_8hpp_source.html
@@ -148,39 +148,50 @@ $(function(){ initResizable(false); });
54 throw std::runtime_error(
"not equal");
-
- 58 void AreNotEqual(
const T& a,
const T& b)
-
-
- 61 throw std::runtime_error(
"equal");
-
-
- 64 inline void AreNotEqual(
const char* a,
const char* b)
-
- 66 if (strcmp(a, b) == 0)
- 67 throw std::runtime_error(
"equal");
-
-
- 70 inline void AreNotEqual(
const wchar_t* a,
const wchar_t* b)
-
- 72 if (wcscmp(a, b) == 0)
- 73 throw std::runtime_error(
"equal");
-
-
- 76 template <
class E,
typename F>
- 77 void ExpectException(F functor)
-
-
- 80 catch (
const E&) {
return; }
- 81 catch (...) {
throw std::runtime_error(
"unexpected exception"); }
- 82 throw std::runtime_error(
"exception not thrown");
-
-
-
+ 57 inline void AreEqual(
const char32_t* a,
const char32_t* b)
+
+
+ 60 if (stdex::strcmp(a, b) != 0)
+ 61 throw std::runtime_error(
"not equal");
+
+ 63 if (wcscmp(
reinterpret_cast<const wchar_t*
>(a),
reinterpret_cast<const wchar_t*
>(b)) != 0)
+ 64 throw std::runtime_error(
"not equal");
+
+
+
+
+ 69 void AreNotEqual(
const T& a,
const T& b)
+
+
+ 72 throw std::runtime_error(
"equal");
+
+
+ 75 inline void AreNotEqual(
const char* a,
const char* b)
+
+ 77 if (strcmp(a, b) == 0)
+ 78 throw std::runtime_error(
"equal");
+
+
+ 81 inline void AreNotEqual(
const wchar_t* a,
const wchar_t* b)
+
+ 83 if (wcscmp(a, b) == 0)
+ 84 throw std::runtime_error(
"equal");
+
+
+ 87 template <
class E,
typename F>
+ 88 void ExpectException(F functor)
+
+
+ 91 catch (
const E&) {
return; }
+ 92 catch (...) {
throw std::runtime_error(
"unexpected exception"); }
+ 93 throw std::runtime_error(
"exception not thrown");
+
+
+