improve formating
authorChristoph Kubisch <pixeljetstream@luxinia.de>
Wed, 17 Apr 2019 08:49:53 +0000 (10:49 +0200)
committerChristoph Kubisch <pixeljetstream@luxinia.de>
Wed, 17 Apr 2019 08:49:53 +0000 (10:49 +0200)
glslang/MachineIndependent/SymbolTable.cpp
glslang/MachineIndependent/SymbolTable.h

index d0b6ecd..c0a02e6 100755 (executable)
@@ -176,7 +176,7 @@ void TType::buildMangledName(TString& mangledName) const
 // Dump functions.
 //
 
-void TSymbol::dumpExtensions(TInfoSink &infoSink) const
+void TSymbol::dumpExtensions(TInfoSinkinfoSink) const
 {
     int numExtensions = getNumExtensions();
     if (numExtensions) {
@@ -189,13 +189,12 @@ void TSymbol::dumpExtensions(TInfoSink &infoSink) const
     }
 }
 
-void TVariable::dump(TInfoSink &infoSink, bool complete) const
+void TVariable::dump(TInfoSinkinfoSink, bool complete) const
 {
     if (complete) {
         infoSink.debug << getName().c_str() << ": " << type.getCompleteString();
         dumpExtensions(infoSink);
-    } else
-    {
+    } else {
         infoSink.debug << getName().c_str() << ": " << type.getStorageQualifierString() << " "
                        << type.getBasicTypeString();
 
@@ -206,7 +205,7 @@ void TVariable::dump(TInfoSink &infoSink, bool complete) const
     infoSink.debug << "\n";
 }
 
-void TFunction::dump(TInfoSink &infoSink, bool complete) const
+void TFunction::dump(TInfoSinkinfoSink, bool complete) const
 {
     if (complete) {
         infoSink.debug << getName().c_str() << ": " << returnType.getCompleteString() << " " << getName().c_str()
@@ -222,8 +221,7 @@ void TFunction::dump(TInfoSink &infoSink, bool complete) const
 
         infoSink.debug << ")";
         dumpExtensions(infoSink);
-    } else
-    {
+    } else {
         infoSink.debug << getName().c_str() << ": " << returnType.getBasicTypeString() << " "
                        << getMangledName().c_str() << "n";
     }
@@ -231,20 +229,20 @@ void TFunction::dump(TInfoSink &infoSink, bool complete) const
     infoSink.debug << "\n";
 }
 
-void TAnonMember::dump(TInfoSink &TInfoSink, bool complete) const
+void TAnonMember::dump(TInfoSinkTInfoSink, bool complete) const
 {
     TInfoSink.debug << "anonymous member " << getMemberNumber() << " of " << getAnonContainer().getName().c_str()
                     << "\n";
 }
 
-void TSymbolTableLevel::dump(TInfoSink &infoSink, bool complete) const
+void TSymbolTableLevel::dump(TInfoSinkinfoSink, bool complete) const
 {
     tLevel::const_iterator it;
     for (it = level.begin(); it != level.end(); ++it)
         (*it).second->dump(infoSink, complete);
 }
 
-void TSymbolTable::dump(TInfoSink &infoSink, bool complete) const
+void TSymbolTable::dump(TInfoSinkinfoSink, bool complete) const
 {
     for (int level = currentLevel(); level >= 0; --level) {
         infoSink.debug << "LEVEL " << level << "\n";
index 591858c..f3873cf 100755 (executable)
@@ -116,8 +116,8 @@ public:
     }
     virtual int getNumExtensions() const { return extensions == nullptr ? 0 : (int)extensions->size(); }
     virtual const char** getExtensions() const { return extensions->data(); }
-    virtual void dump(TInfoSink &infoSink, bool complete = false) const = 0;
-    void dumpExtensions(TInfoSink &infoSink) const;
+    virtual void dump(TInfoSinkinfoSink, bool complete = false) const = 0;
+    void dumpExtensions(TInfoSinkinfoSink) const;
 
     virtual bool isReadOnly() const { return ! writable; }
     virtual void makeReadOnly() { writable = false; }
@@ -193,7 +193,7 @@ public:
     }
     virtual const char** getMemberExtensions(int member) const { return (*memberExtensions)[member].data(); }
 
-    virtual void dump(TInfoSink &infoSink, bool complete = false) const;
+    virtual void dump(TInfoSinkinfoSink, bool complete = false) const;
 
 protected:
     explicit TVariable(const TVariable&);
@@ -314,7 +314,7 @@ public:
     virtual TParameter& operator[](int i) { assert(writable); return parameters[i]; }
     virtual const TParameter& operator[](int i) const { return parameters[i]; }
 
-    virtual void dump(TInfoSink &infoSink, bool complete = false) const override;
+    virtual void dump(TInfoSinkinfoSink, bool complete = false) const override;
 
 protected:
     explicit TFunction(const TFunction&);
@@ -374,7 +374,7 @@ public:
     virtual const char** getExtensions() const override { return anonContainer.getMemberExtensions(memberNumber); }
 
     virtual int getAnonId() const { return anonId; }
-    virtual void dump(TInfoSink &infoSink, bool complete = false) const override;
+    virtual void dump(TInfoSinkinfoSink, bool complete = false) const override;
 
 protected:
     explicit TAnonMember(const TAnonMember&);
@@ -542,7 +542,7 @@ public:
 
     void relateToOperator(const char* name, TOperator op);
     void setFunctionExtensions(const char* name, int num, const char* const extensions[]);
-    void dump(TInfoSink &infoSink, bool complete = false) const;
+    void dump(TInfoSinkinfoSink, bool complete = false) const;
     TSymbolTableLevel* clone() const;
     void readOnly();
 
@@ -843,7 +843,7 @@ public:
     }
 
     int getMaxSymbolId() { return uniqueId; }
-    void dump(TInfoSink &infoSink, bool complete = false) const;
+    void dump(TInfoSinkinfoSink, bool complete = false) const;
     void copyTable(const TSymbolTable& copyOf);
 
     void setPreviousDefaultPrecisions(TPrecisionQualifier *p) { table[currentLevel()]->setPreviousDefaultPrecisions(p); }