Skip to content

Commit

Permalink
Silence char* constness cast warning
Browse files Browse the repository at this point in the history
Co-authored-by: Michael Hansen <[email protected]>
  • Loading branch information
dpogue and zrax committed Jun 18, 2024
1 parent 56e405d commit 739fc96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Python/ResManager/pyResManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ PY_PLASMA_DEALLOC(ResManager)

PY_PLASMA_INIT_DECL(ResManager)
{
char* kwdlist[] = { "version", "preserveObjIDs", nullptr };
char* kwdlist[] = { _pycs("version"), _pycs("preserveObjIDs"), nullptr };

int version = PlasmaVer::pvUnknown;
bool preserveObjIDs = false;
Expand Down

0 comments on commit 739fc96

Please sign in to comment.