Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenMesh
OpenMesh
Commits
b85ba1d6
Commit
b85ba1d6
authored
Oct 17, 2017
by
Jan Möbius
Browse files
Fixed broken version macros (Thanks to Frederik Salomonsson for the fix)
parent
c57fece9
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/OpenMesh/Core/System/config.h
View file @
b85ba1d6
...
...
@@ -71,9 +71,9 @@
// only defined, if it is a beta version
//#define OM_VERSION_BETA 4
#define OM_GET_VER ((OM_VERSION &
&
0xf0000) >> 16)
#define OM_GET_MAJ ((OM_VERSION &
&
0x0ff00) >> 8)
#define OM_GET_MIN (OM_VERSION &
&
0x000ff)
#define OM_GET_VER ((OM_VERSION & 0xf0000) >> 16)
#define OM_GET_MAJ ((OM_VERSION & 0x0ff00) >> 8)
#define OM_GET_MIN (OM_VERSION & 0x000ff)
#ifdef WIN32
# ifdef min
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment