Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
CoMISo
Base
Commits
dd1c8d9d
Commit
dd1c8d9d
authored
Apr 28, 2020
by
Martin Marinov
Browse files
Merge remote-tracking branch 'VCI/master' into marinom/merge-from-VCI
parents
e539ad9b
3623fbdf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Debug/DebConfig.cc
View file @
dd1c8d9d
...
...
@@ -128,8 +128,6 @@ int Config::custom_level(const char* const _flnm, const char* const _fnct) const
int
lvl
=
output_level
;
for
(
const
auto
&
fltr
:
*
lvl_fltrs_
)
{
// continue this iteration until the maximum allowed level if found
if
(
lvl
>=
fltr
.
first
)
// can this filter increase the current level?
continue
;
if
(
fltr
.
second
.
select_file
(
_flnm
)
||
fltr
.
second
.
select_function
(
_fnct
))
lvl
=
fltr
.
first
;
}
...
...
Utils/BaseError.hh
View file @
dd1c8d9d
...
...
@@ -22,6 +22,9 @@ public:
//! Constructor.
Error
(
const
Index
_idx
)
:
idx_
((
int
)
_idx
)
{}
// ! virtual Destructor
virtual
~
Error
()
{}
// ! Get the outcome error index
int
index
()
const
{
return
(
int
)
idx_
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment