remove "register" keyword:
clang warns: 'register' storage class specifier is deprecated http://stackoverflow.com/questions/10675072/is-the-register-keyword-still-used
This commit is contained in:
@@ -794,7 +794,7 @@ bool PLY::PropertyInstance::ParseValue(
|
||||
{
|
||||
ai_assert(NULL != pCur && NULL != pCurOut && NULL != out);
|
||||
|
||||
register bool ret = true;
|
||||
bool ret = true;
|
||||
*pCurOut = pCur;
|
||||
switch (eType)
|
||||
{
|
||||
@@ -841,7 +841,7 @@ bool PLY::PropertyInstance::ParseValueBinary(
|
||||
{
|
||||
ai_assert(NULL != pCur && NULL != pCurOut && NULL != out);
|
||||
|
||||
register bool ret = true;
|
||||
bool ret = true;
|
||||
switch (eType)
|
||||
{
|
||||
case EDT_UInt:
|
||||
|
||||
Reference in New Issue
Block a user