Skip to content

Commit fa811ca

Browse files
committed
Fix -Wwritable-strings in compiler/il
Fix -Wwritable-strings in compiler/il Signed-off-by: Dylan Tuttle <[email protected]>
1 parent 047404d commit fa811ca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

compiler/il/OMRBlock.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -502,9 +502,9 @@ class OMR_EXTENSIBLE Block : public TR::CFGNode
502502

503503
struct StandardException
504504
{
505-
int32_t length;
506-
char *name;
507-
uint32_t exceptions;
505+
int32_t length;
506+
const char *name;
507+
uint32_t exceptions;
508508
};
509509

510510
static StandardException _standardExceptions[];

0 commit comments

Comments
 (0)