From: Dale P. Smith Date: Sat, 18 Jan 2020 19:37:57 +0000 (-0500) Subject: Fix string literal spacing issue X-Git-Tag: release-2.3.1~16 X-Git-Url: https://git.hcoop.net/clinton/bobotpp.git/commitdiff_plain/9eabf92fca080ae6d4e856f63303f26176fdce04 Fix string literal spacing issue "C++11 requires a space between literal and string macro" --- diff --git a/source/Bot.H b/source/Bot.H index f6851c2..5aea207 100644 --- a/source/Bot.H +++ b/source/Bot.H @@ -31,8 +31,8 @@ #include "String.H" -#define VERSION_STRING PACKAGE" version "VERSION" by unknown_lamer@FreeNode \n1.97 and below by eb@IRCNet " -#define COPYRIGHT_STRING PACKAGE" version "VERSION", Copyright (C) 1997-2000 Etienne BERNARD\nCopyright (C) 2002,2003,2004,2005,2008,2009 Clinton Ebadi" +#define VERSION_STRING PACKAGE " version " VERSION " by unknown_lamer@FreeNode \n1.97 and below by eb@IRCNet " +#define COPYRIGHT_STRING PACKAGE " version " VERSION ", Copyright (C) 1997-2000 Etienne BERNARD\nCopyright (C) 2002,2003,2004,2005,2008,2009 Clinton Ebadi" class Channel; class ChannelList;