diff options
author | Johannes Schickel | 2013-08-04 00:48:41 +0200 |
---|---|---|
committer | Johannes Schickel | 2013-08-04 00:51:09 +0200 |
commit | 1ce54c217a98bd80fa38ecba2562997ce00b01a3 (patch) | |
tree | 7dae90c0513e51d81c3521571a77421557addbd7 /engines/wintermute/math | |
parent | c02934df37824537c6b4b6a3a7d3f5551d000ebb (diff) | |
download | scummvm-rg350-1ce54c217a98bd80fa38ecba2562997ce00b01a3.tar.gz scummvm-rg350-1ce54c217a98bd80fa38ecba2562997ce00b01a3.tar.bz2 scummvm-rg350-1ce54c217a98bd80fa38ecba2562997ce00b01a3.zip |
WINTERMUTE: Fix end of namespace comments.
Diffstat (limited to 'engines/wintermute/math')
-rw-r--r-- | engines/wintermute/math/math_util.cpp | 2 | ||||
-rw-r--r-- | engines/wintermute/math/math_util.h | 2 | ||||
-rw-r--r-- | engines/wintermute/math/matrix4.cpp | 2 | ||||
-rw-r--r-- | engines/wintermute/math/matrix4.h | 2 | ||||
-rw-r--r-- | engines/wintermute/math/rect32.h | 2 | ||||
-rw-r--r-- | engines/wintermute/math/vector2.cpp | 2 | ||||
-rw-r--r-- | engines/wintermute/math/vector2.h | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/engines/wintermute/math/math_util.cpp b/engines/wintermute/math/math_util.cpp index 0aa0f841ac..903cea6d39 100644 --- a/engines/wintermute/math/math_util.cpp +++ b/engines/wintermute/math/math_util.cpp @@ -49,4 +49,4 @@ float MathUtil::roundUp(float val) { return result; } -} // end of namespace Wintermute +} // End of namespace Wintermute diff --git a/engines/wintermute/math/math_util.h b/engines/wintermute/math/math_util.h index 38b6d9abf9..41a7a43e2e 100644 --- a/engines/wintermute/math/math_util.h +++ b/engines/wintermute/math/math_util.h @@ -37,6 +37,6 @@ public: static float roundUp(float val); }; -} // end of namespace Wintermute +} // End of namespace Wintermute #endif diff --git a/engines/wintermute/math/matrix4.cpp b/engines/wintermute/math/matrix4.cpp index a50514457e..011766f510 100644 --- a/engines/wintermute/math/matrix4.cpp +++ b/engines/wintermute/math/matrix4.cpp @@ -83,4 +83,4 @@ void Matrix4::transformVector2(Vector2 &vec) { vec.y = y; } -} // end of namespace Wintermute +} // End of namespace Wintermute diff --git a/engines/wintermute/math/matrix4.h b/engines/wintermute/math/matrix4.h index 273633f723..4198b50484 100644 --- a/engines/wintermute/math/matrix4.h +++ b/engines/wintermute/math/matrix4.h @@ -45,6 +45,6 @@ public: float m[4][4]; }; -} // end of namespace Wintermute +} // End of namespace Wintermute #endif diff --git a/engines/wintermute/math/rect32.h b/engines/wintermute/math/rect32.h index 79d6e80017..f522ab3a35 100644 --- a/engines/wintermute/math/rect32.h +++ b/engines/wintermute/math/rect32.h @@ -116,6 +116,6 @@ struct Rect32 { } }; -} // end of namespace Wintermute +} // End of namespace Wintermute #endif diff --git a/engines/wintermute/math/vector2.cpp b/engines/wintermute/math/vector2.cpp index 98dca70b44..618ee9bda9 100644 --- a/engines/wintermute/math/vector2.cpp +++ b/engines/wintermute/math/vector2.cpp @@ -52,4 +52,4 @@ float Vector2::length() const { return (float)sqrt(x * x + y * y); } -} // end of namespace Wintermute +} // End of namespace Wintermute diff --git a/engines/wintermute/math/vector2.h b/engines/wintermute/math/vector2.h index 31f31daaa0..e4ba97c517 100644 --- a/engines/wintermute/math/vector2.h +++ b/engines/wintermute/math/vector2.h @@ -70,6 +70,6 @@ public: float y; }; -} // end of namespace Wintermute +} // End of namespace Wintermute #endif |