From 6ea06445590c8f00d3b3dca5210e83060cf75444 Mon Sep 17 00:00:00 2001 From: cbeall3 Date: Tue, 1 Dec 2015 10:39:23 -0500 Subject: [PATCH] Smallest commit ever to properly shut up warnings! Wunused-local-typedef -> Wunused-local-typedefs --- gtsam/nonlinear/Values.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtsam/nonlinear/Values.h b/gtsam/nonlinear/Values.h index 633e0dd06..70aadfa06 100644 --- a/gtsam/nonlinear/Values.h +++ b/gtsam/nonlinear/Values.h @@ -32,7 +32,7 @@ #ifdef __GNUC__ #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wunused-variable" -#pragma GCC diagnostic ignored "-Wunused-local-typedef" +#pragma GCC diagnostic ignored "-Wunused-local-typedefs" #endif #include #ifdef __GNUC__