File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 5
5
#include " vtr_log.h"
6
6
#include " vpr_error.h"
7
7
8
+ // Set of function names for which the VPR_THROW errors are treated
9
+ // as VTR_LOG_WARN
10
+ static std::unordered_set<std::string> functions_to_demote;
11
+
8
12
/* Date:June 15th, 2013
9
13
* Author: Daniel Chen
10
14
* Purpose: Used to throw any internal VPR error or architecture
Original file line number Diff line number Diff line change @@ -48,10 +48,6 @@ class VprError : public vtr::VtrError {
48
48
t_vpr_error_type type_;
49
49
};
50
50
51
- // Set of function names for which the VPR_THROW errors are treated
52
- // as VTR_LOG_WARN
53
- static std::unordered_set<std::string> functions_to_demote;
54
-
55
51
// This function is used to save into the functions_to_demote set
56
52
// all the function names which contain VPR_THROW errors that are
57
53
// going to be demoted to be VTR_LOG_WARN
You can’t perform that action at this time.
0 commit comments