diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/support/colors.h | 6 |
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 |