From 5c1fef3356336f33aa73e489679a7c90a1111b20 Mon Sep 17 00:00:00 2001
From: Jonathan Lambrechts <jonathan.lambrechts@uclouvain.be>
Date: Fri, 22 Apr 2011 15:14:24 +0000
Subject: [PATCH] fix include order in gmshpy and dgpy for fedora + gcc4.6

---
 Common/gmshpy.i | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/Common/gmshpy.i b/Common/gmshpy.i
index 6238db199b..670ea9d373 100644
--- a/Common/gmshpy.i
+++ b/Common/gmshpy.i
@@ -1,8 +1,5 @@
 %feature("autodoc", "1");
 %module gmshpy
-%include std_string.i
-%include std_vector.i
-%include std_list.i
 %{
   #include "GmshConfig.h"
   #include "GModel.h"
@@ -64,6 +61,10 @@
   };
 %}
 
+%include std_string.i
+%include std_vector.i
+%include std_list.i
+
 %init %{
   errorHandler *eH = new errorHandler;
   Msg::SetCallback(eH);
-- 
GitLab