From c310ab201e3896ef6d1295e703c986725403f83e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Sat, 5 Mar 2016 10:54:27 -0800 Subject: [PATCH] Fixed warning. --- 3rdparty/nvtt/nvcore/posh.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/3rdparty/nvtt/nvcore/posh.h b/3rdparty/nvtt/nvcore/posh.h index e401fb8f4..45d2d9e3c 100644 --- a/3rdparty/nvtt/nvcore/posh.h +++ b/3rdparty/nvtt/nvcore/posh.h @@ -412,7 +412,9 @@ LLVM: # if !defined POSH_OS_XBOX # if defined _WIN64 # define POSH_OS_WIN64 1 -# define POSH_OS_STRING "Win64" +# if !defined POSH_OS_STRING +# define POSH_OS_STRING "Win64" +# endif // !defined POSH_OS_STRING # else # if !defined POSH_OS_STRING # define POSH_OS_STRING "Win32" @@ -1026,5 +1028,3 @@ extern posh_i64_t POSH_ReadI64FromBig( const void *src ); #ifdef __cplusplus } #endif - -