From bb3f5da00dce86ec38a1a1e78693afa573d4fa56 Mon Sep 17 00:00:00 2001
From: Christian Godenschwager <christian.godenschwager@fau.de>
Date: Fri, 24 Aug 2018 10:39:22 +0200
Subject: [PATCH] Remove alternative operator spelling

---
 tests/mesh/MeshVTKTest.cpp | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/tests/mesh/MeshVTKTest.cpp b/tests/mesh/MeshVTKTest.cpp
index ac6ecd307..ce69aa0df 100644
--- a/tests/mesh/MeshVTKTest.cpp
+++ b/tests/mesh/MeshVTKTest.cpp
@@ -33,8 +33,6 @@
 #include <vector>
 #include <string>
 
-#include <iso646.h>
-
 namespace walberla {
 namespace mesh {
 
@@ -58,7 +56,7 @@ void test( const std::string & meshFile )
    for( auto it = mesh->faces_begin(); it != mesh->faces_end(); ++it )
    {
       mesh->status( *it ).set_tagged( b );
-      b =  not b;
+      b = !b;
    }
 
    mesh->request_vertex_status();
-- 
GitLab