diff --git a/src/lol/math/simplex_interpolator.h b/src/lol/math/simplex_interpolator.h index 14185282..001d0aae 100644 --- a/src/lol/math/simplex_interpolator.h +++ b/src/lol/math/simplex_interpolator.h @@ -131,7 +131,7 @@ protected: inline void InitBase() { /* Matrix coordinate transformation to skew simplex referential is done - by inversing the base matrix M which is written as follows: + by inversing the base matrix M which is written as follows: M = | a b b b … | M^(-1) = | c d d d … | | b a b b … | | d c d d … | diff --git a/src/t/base/avl_tree.cpp b/src/t/base/avl_tree.cpp index 429a168e..0afddaf5 100644 --- a/src/t/base/avl_tree.cpp +++ b/src/t/base/avl_tree.cpp @@ -22,10 +22,10 @@ class test_tree : public avl_tree public: virtual ~test_tree() {} - int GetRootBalance() - { - return this->m_root->GetBalance(); - } + int GetRootBalance() + { + return this->m_root->GetBalance(); + } }; lolunit_declare_fixture(AvlTreeTest)