diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2014-05-04 05:56:45 +0200 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2014-05-04 05:56:45 +0200 |
commit | bcd836eb265cb5e44aeac6a343342f7b372056c6 (patch) | |
tree | 712b0610062aefcd062bad03a5f5f37be4944a96 /src/utils/image.cpp | |
parent | 504573a2d336495a9e754d2ee96ba95de450fd6c (diff) | |
download | usdx-bcd836eb265cb5e44aeac6a343342f7b372056c6.tar.gz usdx-bcd836eb265cb5e44aeac6a343342f7b372056c6.tar.xz usdx-bcd836eb265cb5e44aeac6a343342f7b372056c6.zip |
remove semicolon after namespace
Class definitions have to end with a semicolon but not namespaces. So
remove this everywhere.
Diffstat (limited to 'src/utils/image.cpp')
-rw-r--r-- | src/utils/image.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/image.cpp b/src/utils/image.cpp index 10d4c13b..98a4ab8d 100644 --- a/src/utils/image.cpp +++ b/src/utils/image.cpp @@ -90,4 +90,4 @@ namespace usdx const SDL_Surface* s = get_surface(); return Dimension<int>(s->w, s->h); } -}; +} |