From 66101d641703edc63cf48186896323718e3420be Mon Sep 17 00:00:00 2001
From: Brad King <brad.king@kitware.com>
Date: Tue, 10 Jun 2003 15:45:25 -0400
Subject: [PATCH] ENH: Moved disabling of warnings to after kwsys includes.

---
 SystemTools.cxx | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/SystemTools.cxx b/SystemTools.cxx
index 2a57e07..75d01a6 100644
--- a/SystemTools.cxx
+++ b/SystemTools.cxx
@@ -14,16 +14,18 @@
      PURPOSE.  See the above copyright notices for more information.
 
 =========================================================================*/
-#ifdef _MSC_VER
-# pragma warning (disable: 4786)
-#endif
-
 #include <SystemTools.hxx>
+
 #include <RegularExpression.hxx>
 #include <Directory.hxx>
+
 #include <std/iostream>
 #include <std/fstream>
 
+#ifdef _MSC_VER
+# pragma warning (disable: 4786)
+#endif
+
 #include <stdio.h>
 #include <sys/stat.h>
 #include <ctype.h>
-- 
GitLab