From 64b97320ed512a4b03157a14d650d14b34fc5376 Mon Sep 17 00:00:00 2001 From: Ryuji Fuchikami Date: Sat, 1 Mar 2014 11:40:53 +0900 Subject: [PATCH] fix gcc worring --- cfgrtr/source/analyze.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cfgrtr/source/analyze.cpp b/cfgrtr/source/analyze.cpp index 576e600..c827d14 100755 --- a/cfgrtr/source/analyze.cpp +++ b/cfgrtr/source/analyze.cpp @@ -4,7 +4,7 @@ * @file analyze.cpp * @brief %jp{構文解析クラス}%en{lexer cless} * - * Copyright (C) 1998-2010 by Project HOS + * Copyright (C) 1998-2014 by Project HOS * http://sourceforge.jp/projects/hos/ */ @@ -94,7 +94,7 @@ int CAnalyze::SearchChar(char* pszBuf, const char* &pszText, char c) } // 文字列開始チェック - if ( !blText && *pszText == '\"' || *pszText == '\'' ) + if ( (!blText && *pszText == '\"') || *pszText == '\'' ) { cDelimiter = *pszText; *pszBuf++ = *pszText++; -- 2.11.0