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
e485838b
Commit
e485838b
authored
Jan 26, 2015
by
Davis King
Browse files
Made the timing print() display which timing block number
is being printed in addition to the text name.
parent
4a08c318
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
dlib/timing.h
dlib/timing.h
+2
-2
No files found.
dlib/timing.h
View file @
e485838b
...
...
@@ -130,7 +130,7 @@ namespace dlib
string
name
;
// Check if the name buffer is empty. Use the name it contains if it isn't.
if
(
name_buf
(
i
,
""
)[
0
]
!=
'\0'
)
name
=
name_buf
(
i
,
""
);
name
=
cast_to_string
(
i
)
+
": "
+
name_buf
(
i
,
""
);
else
name
=
cast_to_string
(
i
);
max_name_length
=
std
::
max
<
unsigned
long
>
(
max_name_length
,
name
.
size
());
...
...
@@ -144,7 +144,7 @@ namespace dlib
string
name
;
// Check if the name buffer is empty. Use the name it contains if it isn't.
if
(
name_buf
(
i
,
""
)[
0
]
!=
'\0'
)
name
=
name_buf
(
i
,
""
);
name
=
cast_to_string
(
i
)
+
": "
+
name_buf
(
i
,
""
);
else
name
=
cast_to_string
(
i
);
...
...
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