From b219376e24efb9afb2cbed8f7d39613400c7c546 Mon Sep 17 00:00:00 2001 From: Jim Bosch Date: Sun, 18 Mar 2012 17:05:22 -0400 Subject: [PATCH] fixed header order in gaussian example; Python.h should always come before system headers --- libs/numpy/example/gaussian.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/numpy/example/gaussian.cpp b/libs/numpy/example/gaussian.cpp index c6cf2ebd..d0b47d77 100644 --- a/libs/numpy/example/gaussian.cpp +++ b/libs/numpy/example/gaussian.cpp @@ -1,8 +1,8 @@ +#include + #include #include -#include - namespace bp = boost::python; namespace bn = boost::numpy;