sim_model.h: change order of includes to avoid conflicts with a windows header.

msys2 specific. No actual change in code.
This commit is contained in:
jean-pierre charras 2022-07-31 10:32:00 +02:00
parent 5e47ce8963
commit fc849e3e0c
1 changed files with 10 additions and 6 deletions

View File

@ -25,13 +25,17 @@
#ifndef SIM_MODEL_H
#define SIM_MODEL_H
#include <sim/sim_value.h>
#include <enum_vector.h>
#include <sch_field.h>
#include <lib_field.h>
#include <wx/string.h>
#include <map>
#include <sch_field.h>
#include <lib_field.h>
// Must be included after sch_field.h (exactly eda_shape.h) to avoid a colliding
// declaration with a window header (under msys2)
#include <sim/sim_value.h>
#include <enum_vector.h>
class SIM_LIBRARY;