1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-04 23:36:00 +02:00

Trailing whitespace trimming

This commit is contained in:
Brian Fiete 2022-07-26 13:27:03 -04:00
parent 06425735d9
commit 7f328385db
88 changed files with 9577 additions and 9850 deletions

View file

@ -14,7 +14,7 @@ public:
int mCurIdx;
String mResult;
bool mFailed;
String mMangledName;
String mMangledName;
SubstituteList mSubstituteList;
bool mInArgs;
bool mBeefFixed;
@ -28,25 +28,25 @@ public:
class DwDemangler : public DemangleBase
{
public:
public:
SubstituteList mTemplateList;
bool mIsFirstName;
int mTemplateDepth;
bool mOmitSubstituteAdd;
int mTemplateDepth;
bool mOmitSubstituteAdd;
bool mCaptureTargetType;
bool mFunctionPopSubstitute;
bool mRawDemangle;
bool mRawDemangle;
public:
public:
bool DemangleEnd();
bool DemangleArrayType(StringImpl& outName);
bool DemangleBuiltinType(StringImpl& outName);
bool DemangleFunctionType(StringImpl& outName);
bool DemangleSourceName(StringImpl& outName);
bool DemangleRefQualifier(StringImpl& outName);
bool DemangleRefQualifier(StringImpl& outName);
bool DemangleType(StringImpl& outName);
bool DemangleNestedName(StringImpl& outName);
bool DemangleCVQualifiers(StringImpl& outName);
bool DemangleCVQualifiers(StringImpl& outName);
bool DemangleOperatorName(StringImpl& outName);
bool DemangleExprPriamry(StringImpl& outName);
bool DemangleTemplateArgPack(StringImpl& outName);
@ -62,7 +62,7 @@ public:
bool DemangleName(StringImpl& outName, bool* outHasTemplateArgs = NULL);
bool DemangleFunction(StringImpl& outName);
public:
public:
DwDemangler();
String Demangle(const StringImpl& mangledName);
@ -104,7 +104,7 @@ public:
bool DemangleType();
bool DemangleScopedName();
bool DemangleName();
public:
MsDemangleScanner();