-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
dd079f2
commit 004c9ba
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* | ||
* macros.hpp | ||
* | ||
* Created on: 26 Jul 2024 | ||
* Author(s): Volkan Kumtepeli | ||
* | ||
* Defines macros, especially used for external libraries. | ||
* | ||
*/ | ||
|
||
|
||
// Default of this is __forceinline but we use __inline to make compilation faster at the moment. | ||
// Probably better to make it __forceinline in final build. #TODO Make this SLIDE_DEVELOPER_MODE dependent macro. | ||
#if (defined _MSC_VER) || (defined __INTEL_COMPILER) | ||
#define EIGEN_STRONG_INLINE __inline // | ||
#else | ||
#define EIGEN_STRONG_INLINE inline | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters