Skip to content
Snippets Groups Projects
Commit 3ee8f015 authored by Sebastian Eibl's avatar Sebastian Eibl
Browse files

Merge branch 'fix-phantom-typo' into 'master'

Fix typo in PhantomBlock.h (WALBERLA_USE_STD_ANY guard)

See merge request walberla/walberla!361
parents a261f3a1 89813a9d
Branches
Tags
No related merge requests found
...@@ -88,7 +88,7 @@ public: ...@@ -88,7 +88,7 @@ public:
T getData() const { return walberla::any_cast<T>( data_ ); } T getData() const { return walberla::any_cast<T>( data_ ); }
bool hasData() const { bool hasData() const {
#ifdef WALBELRLA_USE_STD_ANY #ifdef WALBERLA_USE_STD_ANY
return data_.has_value(); return data_.has_value();
#else #else
return !(data_.empty()); return !(data_.empty());
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment