Skip to content

Commit

Permalink
Emergency fix to pypower/powerplant.h
Browse files Browse the repository at this point in the history
  • Loading branch information
dchassin committed Mar 18, 2024
1 parent 92c89b2 commit 94da5cd
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions module/pypower/powerplant.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@
class powerplant : public gld_object
{

char buffer[1024];
public:
// published properties
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(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_ATOMIC(int16,plant_code);
GL_ATOMIC(set,generator);
GL_ATOMIC(set,fuel);
Expand Down

0 comments on commit 94da5cd

Please sign in to comment.