From a284ec00d43946c3df02bbd74832db75815d6004 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Thu, 11 Jul 2019 11:31:40 +0200 Subject: [PATCH] Fix typo --- .../internal/Smoothing/ceres_support.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Smoothing/ceres_support.h b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Smoothing/ceres_support.h index c4239327dcd..2c93c4ad95d 100644 --- a/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Smoothing/ceres_support.h +++ b/Polygon_mesh_processing/include/CGAL/Polygon_mesh_processing/internal/Smoothing/ceres_support.h @@ -37,21 +37,21 @@ // If a user is using minilog instead of glog, the verbosity cannot be controlled via ceres options... // Since we really don't want to hear about it, override that value with '0' -#ifdef MINILOG_MAX_LOG_LEVEL -# define MINILOG_MAX_LOG_LEVEL_WAS_DEFINED -# pragma push_macro("MINILOG_MAX_LOG_LEVEL") -# undef MINILOG_MAX_LOG_LEVEL +#ifdef MINIGLOG_MAX_LOG_LEVEL +# define MINIGLOG_MAX_LOG_LEVEL_WAS_DEFINED +# pragma push_macro("MINIGLOG_MAX_LOG_LEVEL") +# undef MINIGLOG_MAX_LOG_LEVEL #endif #define MAX_LOG_LEVEL 0 #include "ceres/ceres.h" -#ifdef MINILOG_MAX_LOG_LEVEL_WAS_DEFINED -# pragma pop_macro("MINILOG_MAX_LOG_LEVEL") -# undef MINILOG_MAX_LOG_LEVEL_WAS_DEFINED +#ifdef MINIGLOG_MAX_LOG_LEVEL_WAS_DEFINED +# pragma pop_macro("MINIGLOG_MAX_LOG_LEVEL") +# undef MINIGLOG_MAX_LOG_LEVEL_WAS_DEFINED #else -# undef MINILOG_MAX_LOG_LEVEL +# undef MINIGLOG_MAX_LOG_LEVEL #endif