[go: nahoru, domu]

Skip to content

Commit

Permalink
Remove leading/trailing underscores from FASTOR macros
Browse files Browse the repository at this point in the history
  • Loading branch information
romeric committed Jun 7, 2020
1 parent d90baa9 commit d738369
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Fastor/config/macros.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ SOFTWARE.
//------------------------------------------------------------------------------------------------//
// Compiler version
//------------------------------------------------------------------------------------------------//
#define __FASTOR_MAJOR__ 0
#define __FASTOR_MINOR__ 6
#define __FASTOR_PATCHLEVEL__ 2
#define __FASTOR__ (__FASTOR_MAJOR__ * 10000 + __FASTOR_MINOR__ * 100 + __FASTOR_PATCHLEVEL__)
#define FASTOR_MAJOR 0
#define FASTOR_MINOR 6
#define FASTOR_PATCHLEVEL 3
#define FASTOR_VERSION (FASTOR_MAJOR * 10000 + FASTOR_MINOR * 100 + FASTOR_PATCHLEVEL)
//------------------------------------------------------------------------------------------------//

//------------------------------------------------------------------------------------------------//
Expand Down

0 comments on commit d738369

Please sign in to comment.