diff --git a/_unit_tests_2compat_8hpp_source.html b/_unit_tests_2compat_8hpp_source.html
index 47c01ce1f..56f098fcb 100644
--- a/_unit_tests_2compat_8hpp_source.html
+++ b/_unit_tests_2compat_8hpp_source.html
@@ -112,14 +112,14 @@ $(document).ready(function() { init_codefold(0); });
- 31 inline void AreEqual(
const T& a,
const T& b)
+ 31 void AreEqual(
const T& a,
const T& b)
34 throw std::runtime_error(
"not equal");
37 template <
class T,
size_t N>
- 38 inline void AreEqual(
const T (&a)[N],
const T (&b)[N])
+ 38 void AreEqual(
const T (&a)[N],
const T (&b)[N])
40 for (
size_t i = 0; i < N; ++i)
@@ -139,7 +139,7 @@ $(document).ready(function() { init_codefold(0); });
- 58 inline void AreNotEqual(
const T& a,
const T& b)
+ 58 void AreNotEqual(
const T& a,
const T& b)
61 throw std::runtime_error(
"equal");
@@ -158,7 +158,7 @@ $(document).ready(function() { init_codefold(0); });
76 template <
class E,
typename F>
- 77 inline void ExpectException(F functor)
+ 77 void ExpectException(F functor)
80 catch (
const E&) {
return; }
@@ -170,7 +170,7 @@ $(document).ready(function() { init_codefold(0); });