Fixed an error in the macro versions of the inline functions.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4948 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -97,7 +97,7 @@ INLINE const char* GetFragmentSourceName (const Fragment* F)
|
|||||||
return GetSourceNameFromList (&F->LineInfos);
|
return GetSourceNameFromList (&F->LineInfos);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
# define GetFragmentSourceName(LI) GetSourceNameFromList (&(F)->LineInfos)
|
# define GetFragmentSourceName(F) GetSourceNameFromList (&(F)->LineInfos)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(HAVE_INLINE)
|
#if defined(HAVE_INLINE)
|
||||||
@@ -107,7 +107,7 @@ INLINE unsigned long GetFragmentSourceLine (const Fragment* F)
|
|||||||
return GetSourceLineFromList (&F->LineInfos);
|
return GetSourceLineFromList (&F->LineInfos);
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
# define GetFragmentSourceLine(LI) GetSourceLineFromList (&(F)->LineInfos)
|
# define GetFragmentSourceLine(F) GetSourceLineFromList (&(F)->LineInfos)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user