From 89813a9df089e0d1b20a7edc515090f20aa0e89f Mon Sep 17 00:00:00 2001
From: Stephan Seitz <stephan.seitz@fau.de>
Date: Tue, 3 Nov 2020 18:10:01 +0100
Subject: [PATCH] Fix typo in PhantomBlock.h (WALBELRLA_USE_STD_ANY guard)

---
 src/blockforest/PhantomBlock.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/blockforest/PhantomBlock.h b/src/blockforest/PhantomBlock.h
index 6afe73bec..e5d95c6c9 100644
--- a/src/blockforest/PhantomBlock.h
+++ b/src/blockforest/PhantomBlock.h
@@ -88,7 +88,7 @@ public:
    T getData() const { return walberla::any_cast<T>( data_ ); }
    
    bool hasData() const {
-#ifdef WALBELRLA_USE_STD_ANY 
+#ifdef WALBERLA_USE_STD_ANY 
       return data_.has_value();
 #else
       return !(data_.empty());
-- 
GitLab