diff CircularQueue.h @ 72:398d1cb12448

Bug fix for unbalanced #if/#endif blocks. I think I broke it when removing the dllimport for Windows.
author Eric Wing <ewing . public |-at-| gmail . com>
date Mon, 16 Jul 2012 22:31:56 -0700
parents 36644b1b940b
children
line wrap: on
line diff
--- a/CircularQueue.h	Wed Jun 20 10:46:03 2012 -0700
+++ b/CircularQueue.h	Mon Jul 16 22:31:56 2012 -0700
@@ -39,6 +39,8 @@
 #if defined(_WIN32)
 	#if defined(C_CIRCULAR_QUEUE_BUILD_LIBRARY)
 		#define C_CIRCULAR_QUEUE_DECLSPEC __declspec(dllexport)
+	#else
+		#define C_CIRCULAR_QUEUE_DECLSPEC
 	#endif
 #else
 	#if defined(C_CIRCULAR_QUEUE_BUILD_LIBRARY)