Merge pull request #2634 from xantares/patch-1

Dont export inline TObjectReflection::getType()
diff --git a/glslang/Public/ShaderLang.h b/glslang/Public/ShaderLang.h
index ff5c20c..d2a4bf4 100644
--- a/glslang/Public/ShaderLang.h
+++ b/glslang/Public/ShaderLang.h
@@ -722,7 +722,7 @@
 public:
     GLSLANG_EXPORT TObjectReflection(const std::string& pName, const TType& pType, int pOffset, int pGLDefineType, int pSize, int pIndex);
 
-    GLSLANG_EXPORT const TType* getType() const { return type; }
+    const TType* getType() const { return type; }
     GLSLANG_EXPORT int getBinding() const;
     GLSLANG_EXPORT void dump() const;
     static TObjectReflection badReflection() { return TObjectReflection(); }