sc_report_handler.cc (13182:9e030f636a8c) sc_report_handler.cc (13300:e22889f59b74)
1/*
2 * Copyright 2018 Google, Inc.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright

--- 78 unchanged lines hidden (view full) ---

87std::map<std::string, ReportCatInfo> catForMsgType;
88std::map<std::pair<std::string, sc_severity>, ReportCatInfo>
89 catForSeverityAndMsgType;
90
91int verbosityLevel = SC_MEDIUM;
92
93sc_actions suppressedActions = SC_UNSPECIFIED;
94sc_actions forcedActions = SC_UNSPECIFIED;
1/*
2 * Copyright 2018 Google, Inc.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
6 * met: redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer;
8 * redistributions in binary form must reproduce the above copyright

--- 78 unchanged lines hidden (view full) ---

87std::map<std::string, ReportCatInfo> catForMsgType;
88std::map<std::pair<std::string, sc_severity>, ReportCatInfo>
89 catForSeverityAndMsgType;
90
91int verbosityLevel = SC_MEDIUM;
92
93sc_actions suppressedActions = SC_UNSPECIFIED;
94sc_actions forcedActions = SC_UNSPECIFIED;
95sc_actions catchActions = SC_UNSPECIFIED;
95sc_actions catchActions = SC_DISPLAY;
96
97sc_report_handler_proc reportHandlerProc = &sc_report_handler::default_handler;
98
99sc_actions maxAction = SC_ABORT;
100
101std::unique_ptr<sc_report> globalReportCache;
102
103} // anonymous namespace

--- 348 unchanged lines hidden ---
96
97sc_report_handler_proc reportHandlerProc = &sc_report_handler::default_handler;
98
99sc_actions maxAction = SC_ABORT;
100
101std::unique_ptr<sc_report> globalReportCache;
102
103} // anonymous namespace

--- 348 unchanged lines hidden ---