Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
dcdb
dcdb
Commits
1866e114
Commit
1866e114
authored
Jan 18, 2016
by
Axel Auweter
Browse files
Fix build of dcdbquerysum with namespace DCDB.
parent
84f185bc
Changes
1
Show whitespace changes
Inline
Side-by-side
DCDBTools/dcdbquerysum/dcdbquerysum.cpp
View file @
1866e114
...
...
@@ -63,10 +63,10 @@ int main(int argc, char* argv[]) {
}
/* Try to create TimeStamp objects from the arguments */
TimeStamp
start
,
end
;
DCDB
::
TimeStamp
start
,
end
;
try
{
start
=
TimeStamp
(
argv
[
argc
-
2
],
localtime
);
end
=
TimeStamp
(
argv
[
argc
-
1
],
localtime
);
start
=
DCDB
::
TimeStamp
(
argv
[
argc
-
2
],
localtime
);
end
=
DCDB
::
TimeStamp
(
argv
[
argc
-
1
],
localtime
);
}
catch
(
std
::
exception
&
e
)
{
std
::
cout
<<
"Wrong time format."
<<
std
::
endl
;
...
...
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