Skip to content

Commit 73ee841

Browse files
authored
Add space between between literal and identifier (#85)
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.
1 parent 484941d commit 73ee841

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

DebugProxy/DebugProxy.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,11 +286,11 @@ static const char* help_string =
286286
" Plugin cache in the host, or modify the date of the DebugProxy binary.\n"
287287
#if defined(__linux__)
288288
" On Linux, this can be done using the following command:\n"
289-
" touch "OFX_PATH "DebugProxy.ofx.bundle/Contents/Linux-x86*/DebugProxy.ofx\n"
289+
" touch " OFX_PATH "DebugProxy.ofx.bundle/Contents/Linux-x86*/DebugProxy.ofx\n"
290290
#endif
291291
#if defined(__FreeBSD__)
292292
" On FreeBSD, this can be done using the following command:\n"
293-
" touch "OFX_PATH "DebugProxy.ofx.bundle/Contents/FreeBSD-x86*/DebugProxy.ofx\n"
293+
" touch " OFX_PATH "DebugProxy.ofx.bundle/Contents/FreeBSD-x86*/DebugProxy.ofx\n"
294294
#endif
295295
#if defined(__APPLE__)
296296
" On OS X, this can be done using the following command:\n"

0 commit comments

Comments
 (0)