Fixed end-of-loop code not reached warning when using SunPro C
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 0858525..cf730e5 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -41,6 +41,10 @@
 #include "unicodeobject.h"
 #include "ucnhash.h"
 
+#ifdef __SUNPRO_C
+#pragma error_messages (off,E_END_OF_LOOP_CODE_NOT_REACHED)
+#endif
+
 #ifdef MS_WINDOWS
 #include <windows.h>
 #endif