diff options
author | Andrew Zonenberg <azonenberg@drawersteak.com> | 2016-12-23 05:10:37 -0800 |
---|---|---|
committer | Andrew Zonenberg <azonenberg@drawersteak.com> | 2016-12-23 05:10:37 -0800 |
commit | 9f69a70d746e7907eed494941bc89a18159caa1b (patch) | |
tree | a0e70a25f3b4090912866264431662de67e1f226 /kernel/log.h | |
parent | ada98844b93e29fcbcfada02f89b2882d73182f1 (diff) | |
parent | 33a22f8768ee05325f87258fe09c21c648553747 (diff) | |
download | yosys-9f69a70d746e7907eed494941bc89a18159caa1b.tar.gz yosys-9f69a70d746e7907eed494941bc89a18159caa1b.tar.bz2 yosys-9f69a70d746e7907eed494941bc89a18159caa1b.zip |
Merge https://github.com/cliffordwolf/yosys
Diffstat (limited to 'kernel/log.h')
-rw-r--r-- | kernel/log.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/log.h b/kernel/log.h index 53480db31..5b1729eb1 100644 --- a/kernel/log.h +++ b/kernel/log.h @@ -23,6 +23,7 @@ #define LOG_H #include <time.h> +#include <regex> #ifndef _WIN32 # include <sys/time.h> @@ -48,6 +49,7 @@ struct log_cmd_error_exception { }; extern std::vector<FILE*> log_files; extern std::vector<std::ostream*> log_streams; extern std::map<std::string, std::set<std::string>> log_hdump; +extern std::vector<std::regex> log_warn_regexes; extern bool log_hdump_all; extern FILE *log_errfile; extern SHA1 *log_hasher; |