Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Todd Kordenbrock
VTK-m
Commits
03bf0772
Commit
03bf0772
authored
May 30, 2018
by
Allison Vacanti
Browse files
Fallback to SimpleTuple.h for Apple Clang 9.0.
This compiler gets tripped up parsing tao's zip implementation.
parent
2b10108a
Changes
1
Hide whitespace changes
Inline
Side-by-side
vtkm/thirdparty/taotuple/vtkmtaotuple/include/Tuple.h
View file @
03bf0772
...
...
@@ -24,6 +24,10 @@
// work on MSVC2015. For this compiler, fallback to a simpler implementation.
#if _MSC_VER == 1900
#define TAOCPP_USE_SIMPLE_TUPLE
// There is a bug in apple clang 9.0 that prevents tao-tuple from compiling:
#elif defined(__apple_build_version__) && defined(__clang__) && __clang_major__ == 9 && \
clang_minor == 0
#define TAOCPP_USE_SIMPLE_TUPLE
#endif
#ifdef TAOCPP_USE_SIMPLE_TUPLE
...
...
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