This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fix warning ISO C++11 does not allow conversion from string literal to
'char *
- Loading branch information
Showing
with
4 additions
and 4 deletions.
- +2 −2 src/core/timebars.cpp
- +2 −2 src/core/timebars.h
There are no files selected for viewing
| @@ -1,6 +1,6 @@ | ||
| #pragma once | ||
|
|
||
| void tbInit(); | ||
| void tbStartTimer(int32, char*); | ||
| void tbEndTimer(char*); | ||
| void tbStartTimer(int32, const char*); | ||
| void tbEndTimer(const char*); | ||
| void tbDisplay(); |