From 42039d1a5f2d53f64828a378bc5ce59b816ef8de Mon Sep 17 00:00:00 2001 From: JF Bastien Date: Thu, 24 Dec 2015 09:53:39 -0800 Subject: Add a support static library For now I've only moved the color check (and made it check the environment only once, note function local static initialization is thread-safe in C++11). This will make the builds slightly faster and allow us to move platform-specific code out of header files (reducing the amount of #include gunk). I'll eventually move other parts of the code to support, especially the command-line parsing (once it's reusable). --- src/pretty_printing.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pretty_printing.h') diff --git a/src/pretty_printing.h b/src/pretty_printing.h index 29b2bdea7..f0a233d69 100644 --- a/src/pretty_printing.h +++ b/src/pretty_printing.h @@ -23,7 +23,7 @@ #include -#include "emscripten-optimizer/colors.h" +#include "support/colors.h" inline std::ostream &doIndent(std::ostream &o, unsigned indent) { for (unsigned i = 0; i < indent; i++) { -- cgit v1.2.3