Skip to content

Commit

Permalink
Some minor cleaning up.
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed Oct 22, 2019
1 parent afe339a commit f53b0b0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
Expand Up @@ -28,8 +28,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "pythonbegin.h"

//==============================================================================
// Note: the order in which we include the two following header files is
// important...
// Note: yes, these two header files must be included in this order...

#include "datastorepythonwrapper.h"
#include "datastorepythonnumpy.h"
Expand Down
4 changes: 1 addition & 3 deletions src/plugins/thirdParty/Python/src/pythonbegin.h
Expand Up @@ -21,9 +21,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
// Python begin
//==============================================================================

#if defined(Q_OS_WIN)
#pragma warning(push)
#elif defined(Q_OS_LINUX)
#if defined(Q_OS_LINUX)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#elif defined(Q_OS_MAC)
Expand Down
4 changes: 1 addition & 3 deletions src/plugins/thirdParty/Python/src/pythonend.h
Expand Up @@ -21,9 +21,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
// Python end
//==============================================================================

#if defined(Q_OS_WIN)
#pragma warning(pop)
#elif defined(Q_OS_LINUX)
#if defined(Q_OS_LINUX)
#pragma GCC diagnostic pop
#elif defined(Q_OS_MAC)
#pragma GCC diagnostic pop
Expand Down

0 comments on commit f53b0b0

Please sign in to comment.