summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJF Bastien <github@jfbastien.com>2015-12-29 17:22:17 -0800
committerJF Bastien <github@jfbastien.com>2015-12-29 17:22:17 -0800
commitc17a9376713fc4aaef9f3ff40b6a12bab0153ea0 (patch)
treee947e2a815087ffbbf77a8a242cddf01a72840f3 /src
parentedc992eb3cd3afece4ba623c382f408aecde4e4a (diff)
downloadbinaryen-c17a9376713fc4aaef9f3ff40b6a12bab0153ea0.tar.gz
binaryen-c17a9376713fc4aaef9f3ff40b6a12bab0153ea0.tar.bz2
binaryen-c17a9376713fc4aaef9f3ff40b6a12bab0153ea0.zip
Fix include guards
Diffstat (limited to 'src')
-rw-r--r--src/support/colors.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/support/colors.h b/src/support/colors.h
index bdef31ec3..03ebb1240 100644
--- a/src/support/colors.h
+++ b/src/support/colors.h
@@ -14,8 +14,8 @@
* limitations under the License.
*/
-#ifndef wasm_color_h
-#define wasm_color_h
+#ifndef wasm_support_color_h
+#define wasm_support_color_h
#include <iosfwd>
@@ -31,4 +31,4 @@ inline void blue(std::ostream& stream) { outputColorCode(stream,"\033[34m"); }
inline void bold(std::ostream& stream) { outputColorCode(stream,"\033[1m"); }
};
-#endif // wasm_color_h
+#endif // wasm_support_color_h