Skip to content

Commit

Permalink
Add space between between literal and identifier (#85)
Browse files Browse the repository at this point in the history
This is needed in order to compile with Clang since C++11 requires a
space between literal and identifier, otherwise, Clang will give an
error.
  • Loading branch information
OmarEmaraDev authored Oct 15, 2021
1 parent 484941d commit 73ee841
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DebugProxy/DebugProxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -286,11 +286,11 @@ static const char* help_string =
" Plugin cache in the host, or modify the date of the DebugProxy binary.\n"
#if defined(__linux__)
" On Linux, this can be done using the following command:\n"
" touch "OFX_PATH "DebugProxy.ofx.bundle/Contents/Linux-x86*/DebugProxy.ofx\n"
" touch " OFX_PATH "DebugProxy.ofx.bundle/Contents/Linux-x86*/DebugProxy.ofx\n"
#endif
#if defined(__FreeBSD__)
" On FreeBSD, this can be done using the following command:\n"
" touch "OFX_PATH "DebugProxy.ofx.bundle/Contents/FreeBSD-x86*/DebugProxy.ofx\n"
" touch " OFX_PATH "DebugProxy.ofx.bundle/Contents/FreeBSD-x86*/DebugProxy.ofx\n"
#endif
#if defined(__APPLE__)
" On OS X, this can be done using the following command:\n"
Expand Down

0 comments on commit 73ee841

Please sign in to comment.