Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpenFlipper
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
OpenFlipper-Free
OpenFlipper
Commits
1a145aa1
Commit
1a145aa1
authored
Mar 09, 2020
by
Jan Möbius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Work around bitset VS2017 and ealrlier compiler bug
parent
becfd709
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
common/UpdateType.cc
common/UpdateType.cc
+6
-0
common/UpdateType.hh
common/UpdateType.hh
+1
-1
No files found.
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
otected
:
pr
ivate
:
UpdateTypeSet
type_
;
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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