Skip to content

Commit 8a49990

Browse files
authored
Fix warning: multi-character character constant
Fix warning: multi-character character constant
1 parent fbe0293 commit 8a49990

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tutorials/64_mesh_obj_demo/main.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ const Configuration loadConfigFile(const char* filepath)
401401
std::cout << "Rendermode : " << config.contextSettings.renderMode << '\n';
402402
std::cout << "Recursion : " << config.contextSettings.recursion << '\n';
403403
std::cout << "Batchsize : " << config.contextSettings.batchSize << '\n';
404-
std::cout << "outImageFile : " << config.contextSettings.outImgFile << '\n\n';
404+
std::cout << "outImageFile : " << config.contextSettings.outImgFile << "\n\n";
405405
}
406406

407407
if (!bLight && !bIbl)
@@ -421,7 +421,7 @@ const Configuration loadConfigFile(const char* filepath)
421421
std::cout << "Translation :" << config.cameraSettings.translation << '\n';
422422
std::cout << "Up :" << config.cameraSettings.up << '\n';
423423
std::cout << "Focal Length:" << config.cameraSettings.focalLength << '\n';
424-
std::cout << "Camera Mode :" << config.cameraSettings.cameraMode << '\n\n';
424+
std::cout << "Camera Mode :" << config.cameraSettings.cameraMode << "\n\n";
425425
}
426426

427427
if (!bShape)
@@ -432,7 +432,7 @@ const Configuration loadConfigFile(const char* filepath)
432432
std::cout << "Path :" << settings.path << '\n';
433433
std::cout << "Rotation : " << settings.rotation << '\n';
434434
std::cout << "Translation : " << settings.translation << '\n';
435-
std::cout << "Scale : " << settings.scale << '\n\n';
435+
std::cout << "Scale : " << settings.scale << "\n\n";
436436

437437
settings.translation = RadeonProRender::float3{0.0f, -3.0f, 0.0f};
438438
settings.scale = RadeonProRender::float3{1.0f, 1.0f, 1.0f};
@@ -967,4 +967,4 @@ int main(int argc , char* argv[])
967967
CHECK(rprObjectDelete(context)); context = nullptr; // Always delete the RPR Context in last.
968968

969969
return 0;
970-
}
970+
}

0 commit comments

Comments
 (0)