diff options
author | JF Bastien <jfb@chromium.org> | 2015-12-24 09:53:39 -0800 |
---|---|---|
committer | JF Bastien <jfb@chromium.org> | 2015-12-24 09:53:39 -0800 |
commit | 42039d1a5f2d53f64828a378bc5ce59b816ef8de (patch) | |
tree | 2c8b93fc94df63fa04a9bfe73b8a6f4d5a2954dc /src/pretty_printing.h | |
parent | 35df36e4c18498c72bd8345d99e27856582d9054 (diff) | |
download | binaryen-42039d1a5f2d53f64828a378bc5ce59b816ef8de.tar.gz binaryen-42039d1a5f2d53f64828a378bc5ce59b816ef8de.tar.bz2 binaryen-42039d1a5f2d53f64828a378bc5ce59b816ef8de.zip |
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).
Diffstat (limited to 'src/pretty_printing.h')
-rw-r--r-- | src/pretty_printing.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 <ostream> -#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++) { |