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
e20926e8
Commit
e20926e8
authored
Feb 11, 2013
by
Davis King
Browse files
A minor change to avoid a compiler warning in visual studio 2012
parent
2f464161
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
tools/imglab/src/convert_pascal_v1.cpp
tools/imglab/src/convert_pascal_v1.cpp
+1
-1
tools/imglab/src/convert_pascal_xml.cpp
tools/imglab/src/convert_pascal_xml.cpp
+1
-1
No files found.
tools/imglab/src/convert_pascal_v1.cpp
View file @
e20926e8
...
...
@@ -164,7 +164,7 @@ void convert_pascal_v1(
dataset
.
images
.
push_back
(
img
);
}
catch
(
exception
&
e
)
catch
(
exception
&
)
{
cout
<<
"Error while processing file "
<<
parser
[
i
]
<<
endl
<<
endl
;
throw
;
...
...
tools/imglab/src/convert_pascal_xml.cpp
View file @
e20926e8
...
...
@@ -227,7 +227,7 @@ void convert_pascal_xml(
dataset
.
images
.
push_back
(
img
);
}
catch
(
exception
&
e
)
catch
(
exception
&
)
{
cout
<<
"Error while processing file "
<<
parser
[
i
]
<<
endl
<<
endl
;
throw
;
...
...
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