# HG changeset patch # User Mike Miller # Date 1493395435 25200 # Node ID 3905052ebe1db9ccb924d19956974737172a3204 # Parent fc0fb94161de56ce7925bdbff589ebd03ef40a08 maint: sort uses of new header file oct-py-object.h * Makefile.am (PYTAVE_HEADER_FILES): Sort the list. * oct-py-object.h: Add missing #include . * oct-py-util.cc: Sort the include files. diff -r fc0fb94161de -r 3905052ebe1d Makefile.am --- a/Makefile.am Thu Apr 13 02:10:48 2017 -0700 +++ b/Makefile.am Fri Apr 28 09:03:55 2017 -0700 @@ -68,11 +68,11 @@ config.h \ exceptions.h \ oct-py-eval.h \ + oct-py-object.h \ oct-py-types.h \ oct-py-util.h \ octave_to_python.h \ - python_to_octave.h \ - oct-py-object.h + python_to_octave.h TST_FILES = $(addsuffix -tst,$(OCT_SOURCE_FILES)) diff -r fc0fb94161de -r 3905052ebe1d oct-py-object.h --- a/oct-py-object.h Thu Apr 13 02:10:48 2017 -0700 +++ b/oct-py-object.h Fri Apr 28 09:03:55 2017 -0700 @@ -23,6 +23,8 @@ #if ! defined (pytave_oct_py_object_h) #define pytave_oct_py_object_h +#include + namespace pytave { @@ -102,4 +104,3 @@ } #endif - diff -r fc0fb94161de -r 3905052ebe1d oct-py-util.cc --- a/oct-py-util.cc Thu Apr 13 02:10:48 2017 -0700 +++ b/oct-py-util.cc Fri Apr 28 09:03:55 2017 -0700 @@ -27,9 +27,9 @@ #include #include +#include "oct-py-object.h" #include "oct-py-types.h" #include "oct-py-util.h" -#include "oct-py-object.h" // FIXME: only here for boost::python::error_already_set #include