Skip to content

Commit 874fe48

Browse files
committed
Fix string literal conversion warnings in runtime/compiler/runtime
Fix string literal conversion warnings in runtime/compiler/runtime Signed-off-by: Dylan Tuttle <[email protected]>
1 parent 4171e87 commit 874fe48

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

runtime/compiler/runtime/RelocationRuntime.hpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -301,17 +301,17 @@ class TR_RelocationRuntime {
301301
virtual bool validateAOTHeader(TR_FrontEnd *fe, J9VMThread *curThread);
302302
virtual OMRProcessorDesc getProcessorDescriptionFromSCC(J9VMThread *curThread);
303303

304-
static uintptr_t getGlobalValue(uint32_t g)
304+
static uintptr_t getGlobalValue(uint32_t g)
305305
{
306306
TR_ASSERT(g >= 0 && g < TR_NumGlobalValueItems, "invalid index for global item");
307307
return _globalValueList[g];
308308
}
309-
static void setGlobalValue(uint32_t g, uintptr_t v)
309+
static void setGlobalValue(uint32_t g, uintptr_t v)
310310
{
311311
TR_ASSERT(g >= 0 && g < TR_NumGlobalValueItems, "invalid index for global item");
312312
_globalValueList[g] = v;
313313
}
314-
static const char * nameOfGlobal(uint32_t g)
314+
static const char *nameOfGlobal(uint32_t g)
315315
{
316316
TR_ASSERT(g >= 0 && g < TR_NumGlobalValueItems, "invalid index for global item");
317317
return _globalValueNames[g];
@@ -385,10 +385,10 @@ class TR_RelocationRuntime {
385385
TR_AotRelocationCleanUp _relocationStatus;
386386
void relocationFailureCleanup();
387387

388-
static bool _globalValuesInitialized;
389-
static uintptr_t _globalValueList[TR_NumGlobalValueItems];
390-
static uint8_t _globalValueSizeList[TR_NumGlobalValueItems];
391-
static const char *_globalValueNames[TR_NumGlobalValueItems];
388+
static bool _globalValuesInitialized;
389+
static uintptr_t _globalValueList[TR_NumGlobalValueItems];
390+
static uint8_t _globalValueSizeList[TR_NumGlobalValueItems];
391+
static const char *_globalValueNames[TR_NumGlobalValueItems];
392392

393393
TR_RelocationErrorCode _reloErrorCode;
394394
static const char *_reloErrorCodeNames[];

0 commit comments

Comments
 (0)