Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
53168ba4
Commit
53168ba4
authored
Feb 14, 2015
by
Davis King
Browse files
Fixed warning in gcc
parent
e611d110
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
dlib/logger/logger_config_file.cpp
dlib/logger/logger_config_file.cpp
+2
-1
No files found.
dlib/logger/logger_config_file.cpp
View file @
53168ba4
...
@@ -145,7 +145,8 @@ namespace dlib
...
@@ -145,7 +145,8 @@ namespace dlib
if
(
!
fin
)
if
(
!
fin
)
throw
logger_config_file_error
(
"logger_config: unable to open config file "
+
file_name
);
throw
logger_config_file_error
(
"logger_config: unable to open config file "
+
file_name
);
configure_loggers_from_file
(
config_reader
(
fin
));
config_reader
temp
(
fin
);
configure_loggers_from_file
(
temp
);
}
}
// ----------------------------------------------------------------------------------------
// ----------------------------------------------------------------------------------------
...
...
Write
Preview
Markdown
is supported
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