Skip to content

Commit

Permalink
* even more build fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-gresyk committed Apr 23, 2019
1 parent 2f139c3 commit 687b9d3
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions include/hfsm2/detail/structure/composite.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ struct _C {

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

#if defined _MSC_VER || defined __clang__
#if defined _MSC_VER || defined __clang_major__ && __clang_major__ >= 7

template <RegionStrategy TG = STRATEGY>
HFSM_INLINE UProng deepRequestChange (Control& control, const ShortIndex = INVALID_SHORT_INDEX);
Expand All @@ -110,7 +110,7 @@ struct _C {

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

#if defined _MSC_VER || defined __clang__
#if defined _MSC_VER || defined __clang_major__ && __clang_major__ >= 7

template <RegionStrategy TG = STRATEGY>
HFSM_INLINE UProng deepReportChange (Control& control, const ShortIndex = INVALID_SHORT_INDEX);
Expand Down
4 changes: 2 additions & 2 deletions include/hfsm2/detail/structure/composite.inl
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ _C<NS, NC, NO, TA, TG, TH, TS...>::deepRequest(Control& control,

//------------------------------------------------------------------------------

#if !defined _MSC_VER && !defined __clang__
#if !defined _MSC_VER && (!defined __clang_major__ || __clang_major__ < 7)

template <StateID NS, ShortIndex NC, ShortIndex NO, typename TA, RegionStrategy TG, typename TH, typename... TS>
UProng
Expand Down Expand Up @@ -324,7 +324,7 @@ _C<NS, NC, NO, TA, TG, TH, TS...>::deepRequestChangeUtilitarian(Control& control

//------------------------------------------------------------------------------

#if !defined _MSC_VER && !defined __clang__
#if !defined _MSC_VER && (!defined __clang_major__ || __clang_major__ < 7)

template <StateID NS, ShortIndex NC, ShortIndex NO, typename TA, RegionStrategy TG, typename TH, typename... TS>
UProng
Expand Down
4 changes: 2 additions & 2 deletions include/hfsm2/detail/structure/composite_sub.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ struct _CS {

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

#if defined _MSC_VER || defined __clang__
#if defined _MSC_VER || defined __clang_major__ && __clang_major__ >= 7

template <RegionStrategy TG = STRATEGY>
HFSM_INLINE UProng deepRequestChange (Control& control, const ShortIndex = INVALID_SHORT_INDEX);
Expand All @@ -112,7 +112,7 @@ struct _CS {

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

#if defined _MSC_VER || defined __clang__
#if defined _MSC_VER || defined __clang_major__ && __clang_major__ >= 7

template <RegionStrategy TG = STRATEGY>
HFSM_INLINE UProng deepReportChange (Control& control, const ShortIndex = INVALID_SHORT_INDEX);
Expand Down
4 changes: 2 additions & 2 deletions include/hfsm2/detail/structure/composite_sub.inl
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ _CS<NS, NC, NO, TA, TG, NI, TS...>::deepForwardRequest(Control& control,

//------------------------------------------------------------------------------

#if !defined _MSC_VER && !defined __clang__
#if !defined _MSC_VER && (!defined __clang_major__ || __clang_major__ < 7)

template <StateID NS, ShortIndex NC, ShortIndex NO, typename TA, RegionStrategy TG, ShortIndex NI, typename... TS>
UProng
Expand Down Expand Up @@ -235,7 +235,7 @@ _CS<NS, NC, NO, TA, TG, NI, TS...>::deepRequestChangeUtilitarian(Control& contro

//------------------------------------------------------------------------------

#if !defined _MSC_VER && !defined __clang__
#if !defined _MSC_VER && (!defined __clang_major__ || __clang_major__ < 7)

template <StateID NS, ShortIndex NC, ShortIndex NO, typename TA, RegionStrategy TG, ShortIndex NI, typename... TS>
UProng
Expand Down
16 changes: 8 additions & 8 deletions include/hfsm2/machine.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5249,7 +5249,7 @@ struct _CS {

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

#if defined _MSC_VER || defined __clang__
#if defined _MSC_VER || defined __clang_major__ && __clang_major__ >= 7

template <RegionStrategy TG = STRATEGY>
HFSM_INLINE UProng deepRequestChange (Control& control, const ShortIndex = INVALID_SHORT_INDEX);
Expand All @@ -5275,7 +5275,7 @@ struct _CS {

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

#if defined _MSC_VER || defined __clang__
#if defined _MSC_VER || defined __clang_major__ && __clang_major__ >= 7

template <RegionStrategy TG = STRATEGY>
HFSM_INLINE UProng deepReportChange (Control& control, const ShortIndex = INVALID_SHORT_INDEX);
Expand Down Expand Up @@ -5501,7 +5501,7 @@ _CS<NS, NC, NO, TA, TG, NI, TS...>::deepForwardRequest(Control& control,

//------------------------------------------------------------------------------

#if !defined _MSC_VER && !defined __clang__
#if !defined _MSC_VER && (!defined __clang_major__ || __clang_major__ < 7)

template <StateID NS, ShortIndex NC, ShortIndex NO, typename TA, RegionStrategy TG, ShortIndex NI, typename... TS>
UProng
Expand Down Expand Up @@ -5569,7 +5569,7 @@ _CS<NS, NC, NO, TA, TG, NI, TS...>::deepRequestChangeUtilitarian(Control& contro

//------------------------------------------------------------------------------

#if !defined _MSC_VER && !defined __clang__
#if !defined _MSC_VER && (!defined __clang_major__ || __clang_major__ < 7)

template <StateID NS, ShortIndex NC, ShortIndex NO, typename TA, RegionStrategy TG, ShortIndex NI, typename... TS>
UProng
Expand Down Expand Up @@ -5809,7 +5809,7 @@ struct _C {

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

#if defined _MSC_VER || defined __clang__
#if defined _MSC_VER || defined __clang_major__ && __clang_major__ >= 7

template <RegionStrategy TG = STRATEGY>
HFSM_INLINE UProng deepRequestChange (Control& control, const ShortIndex = INVALID_SHORT_INDEX);
Expand All @@ -5835,7 +5835,7 @@ struct _C {

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

#if defined _MSC_VER || defined __clang__
#if defined _MSC_VER || defined __clang_major__ && __clang_major__ >= 7

template <RegionStrategy TG = STRATEGY>
HFSM_INLINE UProng deepReportChange (Control& control, const ShortIndex = INVALID_SHORT_INDEX);
Expand Down Expand Up @@ -6149,7 +6149,7 @@ _C<NS, NC, NO, TA, TG, TH, TS...>::deepRequest(Control& control,

//------------------------------------------------------------------------------

#if !defined _MSC_VER && !defined __clang__
#if !defined _MSC_VER && (!defined __clang_major__ || __clang_major__ < 7)

template <StateID NS, ShortIndex NC, ShortIndex NO, typename TA, RegionStrategy TG, typename TH, typename... TS>
UProng
Expand Down Expand Up @@ -6219,7 +6219,7 @@ _C<NS, NC, NO, TA, TG, TH, TS...>::deepRequestChangeUtilitarian(Control& control

//------------------------------------------------------------------------------

#if !defined _MSC_VER && !defined __clang__
#if !defined _MSC_VER && (!defined __clang_major__ || __clang_major__ < 7)

template <StateID NS, ShortIndex NC, ShortIndex NO, typename TA, RegionStrategy TG, typename TH, typename... TS>
UProng
Expand Down
4 changes: 2 additions & 2 deletions projects/visual-studio/shared-15.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<ImportGroup Label="PropertySheets" />
<PropertyGroup Label="UserMacros" />
<PropertyGroup>
<OutDir>$(SolutionDir)..\..\binaries-$(PlatformArchitecture)\</OutDir>
<IntDir>$(BUILD_ROOT)\$(SolutionName)-$(PlatformArchitecture)\$(ProjectName)-$(Configuration)\</IntDir>
<OutDir>$(SolutionDir)..\..\binaries-$(PlatformTarget)\</OutDir>
<IntDir>$(BUILD_ROOT)\$(SolutionName)-$(PlatformTarget)\$(ProjectName)-$(Configuration)\</IntDir>
<TargetName>$(ProjectName)-$(Configuration)-$(PlatformTarget)</TargetName>
</PropertyGroup>
<ItemDefinitionGroup>
Expand Down

0 comments on commit 687b9d3

Please sign in to comment.