Skip to content
Snippets Groups Projects
Commit 70012ed4 authored by kotsifa2's avatar kotsifa2
Browse files

Fixed a few warnings from hpvm rt controller

parent 48f847dc
No related branches found
No related tags found
No related merge requests found
......@@ -137,7 +137,7 @@ void RuntimeController::readConfigurationFile(const char *str) {
bool readingFirstLine = false;
for (std::string line; std::getline(qin, line); ) {
DEBUG("line: ", line, "\n");
DEBUG("line: ", line.c_str(), "\n");
// Tokenize using ' ' as delimiter
// Vector to store tokens
......@@ -147,7 +147,7 @@ void RuntimeController::readConfigurationFile(const char *str) {
tokens.push_back(i);
for (unsigned i = 0; i < tokens.size(); i++ )
DEBUG("t: ", tokens[i], "\n");
DEBUG("t: ", tokens[i].c_str(), "\n");
DEBUG("\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment