summaryrefslogtreecommitdiff
path: root/indra/llui
diff options
context:
space:
mode:
authorcallum_linden <none@none>2014-12-10 13:02:36 -0800
committercallum_linden <none@none>2014-12-10 13:02:36 -0800
commit6bb3fc93926e93154d9651e16e131ffa4c805a2e (patch)
tree68e413308788f6a7833d9c4ec34d106021511d15 /indra/llui
parent3d94afafb530b9841c151a24799a08f064b70ede (diff)
Fix for incorrectly formatted #if statements (worked on clang FWIW!)
Diffstat (limited to 'indra/llui')
-rwxr-xr-xindra/llui/llrngwriter.cpp2
-rwxr-xr-xindra/llui/lluictrlfactory.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/llrngwriter.cpp b/indra/llui/llrngwriter.cpp
index 523bc7c667..e4a31d6a79 100755
--- a/indra/llui/llrngwriter.cpp
+++ b/indra/llui/llrngwriter.cpp
@@ -34,7 +34,7 @@
#pragma clang diagnostic ignored "-Wdelete-incomplete"
#include "lluictrlfactory.h"
#pragma clang diagnostic pop
-#elif
+#else
#include "lluictrlfactory.h"
#endif
diff --git a/indra/llui/lluictrlfactory.h b/indra/llui/lluictrlfactory.h
index 17af45cc0c..3ce39c947f 100755
--- a/indra/llui/lluictrlfactory.h
+++ b/indra/llui/lluictrlfactory.h
@@ -189,7 +189,7 @@ public:
#pragma clang diagnostic ignored "-Wdelete-incomplete"
delete view;
#pragma clang diagnostic pop
-#elif
+#else
delete view;
#endif
view = NULL;