aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/color
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander@sulfrian.net>2014-05-04 05:56:45 +0200
committerAlexander Sulfrian <alexander@sulfrian.net>2014-05-04 05:56:45 +0200
commitbcd836eb265cb5e44aeac6a343342f7b372056c6 (patch)
tree712b0610062aefcd062bad03a5f5f37be4944a96 /src/utils/color
parent504573a2d336495a9e754d2ee96ba95de450fd6c (diff)
downloadusdx-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/color')
-rw-r--r--src/utils/color/hsv.cpp2
-rw-r--r--src/utils/color/hsv.hpp2
-rw-r--r--src/utils/color/rgb.cpp2
-rw-r--r--src/utils/color/rgb.hpp2
-rw-r--r--src/utils/color/rgba.cpp2
-rw-r--r--src/utils/color/rgba.hpp2
6 files changed, 6 insertions, 6 deletions
diff --git a/src/utils/color/hsv.cpp b/src/utils/color/hsv.cpp
index 11df9ec2..ecb155e6 100644
--- a/src/utils/color/hsv.cpp
+++ b/src/utils/color/hsv.cpp
@@ -102,4 +102,4 @@ namespace usdx
return value;
}
-};
+}
diff --git a/src/utils/color/hsv.hpp b/src/utils/color/hsv.hpp
index 748a9b74..c56b9aee 100644
--- a/src/utils/color/hsv.hpp
+++ b/src/utils/color/hsv.hpp
@@ -61,6 +61,6 @@ namespace usdx
uint8_t get_value(void) const;
};
-};
+}
#endif
diff --git a/src/utils/color/rgb.cpp b/src/utils/color/rgb.cpp
index c43b85c4..224c2ea0 100644
--- a/src/utils/color/rgb.cpp
+++ b/src/utils/color/rgb.cpp
@@ -168,4 +168,4 @@ namespace usdx
{
return (red == 255) && (green == 255) && (blue == 255);
}
-};
+}
diff --git a/src/utils/color/rgb.hpp b/src/utils/color/rgb.hpp
index 6871e452..de96bf13 100644
--- a/src/utils/color/rgb.hpp
+++ b/src/utils/color/rgb.hpp
@@ -62,6 +62,6 @@ namespace usdx
bool is_black(void) const;
bool is_white(void) const;
};
-};
+}
#endif
diff --git a/src/utils/color/rgba.cpp b/src/utils/color/rgba.cpp
index 777bb720..3b669bba 100644
--- a/src/utils/color/rgba.cpp
+++ b/src/utils/color/rgba.cpp
@@ -96,4 +96,4 @@ namespace usdx
{
return 4;
}
-};
+}
diff --git a/src/utils/color/rgba.hpp b/src/utils/color/rgba.hpp
index 5d67a92a..36f1e7a7 100644
--- a/src/utils/color/rgba.hpp
+++ b/src/utils/color/rgba.hpp
@@ -46,6 +46,6 @@ namespace usdx
virtual const GLubyte* get_array(size_t len) const;
int get_array_comonent_count(void) const;
};
-};
+}
#endif