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
OpenFlipper-Free
OpenFlipper
Commits
1a145aa1
Commit
1a145aa1
authored
Mar 09, 2020
by
Jan Möbius
Browse files
Work around bitset VS2017 and ealrlier compiler bug
parent
becfd709
Changes
2
Hide whitespace changes
Inline
Side-by-side
common/UpdateType.cc
View file @
1a145aa1
...
...
@@ -39,6 +39,12 @@
* *
\*===========================================================================*/
// Workaround compiler bug in VS2017 and earlier with colliding Qt operators and bitset
#ifdef _MSC_VER
#if (_MSC_VER <= 1916)
#define QT_NO_FLOAT16_OPERATORS
#endif
#endif
#include
"TypesInternal.hh"
#include
"UpdateType.hh"
...
...
common/UpdateType.hh
View file @
1a145aa1
...
...
@@ -84,7 +84,7 @@ class DLLEXPORT UpdateType {
return
os
<<
type
.
type_
;
}
pr
otec
te
d
:
pr
iva
te:
UpdateTypeSet
type_
;
};
...
...
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