From bfe8dd365877b2291cd582031bfeb2abe15b7efc Mon Sep 17 00:00:00 2001 From: "David P. Chassin" Date: Mon, 18 Mar 2024 19:44:08 -0700 Subject: [PATCH] Revert "Emergency fix to pypower/powerplant.h" This reverts commit 94da5cdc9d71b056deb899b9ff1e877262b8cb21. --- module/pypower/powerplant.h | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/module/pypower/powerplant.h b/module/pypower/powerplant.h index 667c5dc0b..adc2b5dc0 100644 --- a/module/pypower/powerplant.h +++ b/module/pypower/powerplant.h @@ -9,15 +9,14 @@ class powerplant : public gld_object { - char buffer[1024]; public: // published properties - GL_ATOMIC(char32,city); - GL_ATOMIC(char32,state); - GL_ATOMIC(char32,zipcode); - GL_ATOMIC(char32,country); - GL_ATOMIC(char32,naics_code); - GL_ATOMIC(char256,naics_description); + GL_STRING(char32,city); + GL_STRING(char32,state); + GL_STRING(char32,zipcode); + GL_STRING(char32,country); + GL_STRING(char32,naics_code); + GL_STRING(char256,naics_description); GL_ATOMIC(int16,plant_code); GL_ATOMIC(set,generator); GL_ATOMIC(set,fuel);