aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/color
diff options
context:
space:
mode:
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