From bbf7abb0f4c2ce00e425287c987989736cd8fcac Mon Sep 17 00:00:00 2001 From: Joshua Chin Date: Fri, 3 Sep 2021 10:37:27 -0400 Subject: [PATCH] Fix GCC-only warning --- src/mtype.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mtype.h b/src/mtype.h index aad6278b2e666..8ef1009b9e2f8 100644 --- a/src/mtype.h +++ b/src/mtype.h @@ -328,7 +328,7 @@ struct mtype { int armor_bullet = -1; /** innate armor vs. bullet */ int armor_acid = -1; /** innate armor vs. acid */ int armor_fire = -1; /** innate armor vs. fire */ - weakpoints weakpoints; + ::weakpoints weakpoints; // Bleed rate in percent, 0 makes the monster immune to bleeding int bleed_rate = 100;