Fix compile error due to namespace conflicts in VC140.
parent
b08c04b87a
commit
2152aae2a3
|
@ -53,9 +53,9 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
using namespace Assimp;
|
using namespace Assimp;
|
||||||
using namespace glTFCommon;
|
|
||||||
|
|
||||||
namespace glTF {
|
namespace glTF {
|
||||||
|
using namespace glTFCommon;
|
||||||
|
|
||||||
#if _MSC_VER
|
#if _MSC_VER
|
||||||
#pragma warning(push)
|
#pragma warning(push)
|
||||||
|
|
|
@ -82,7 +82,19 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
// clang-format on
|
// clang-format on
|
||||||
|
|
||||||
using namespace Assimp;
|
using namespace Assimp;
|
||||||
using namespace glTFCommon;
|
using glTFCommon::FindStringInContext;
|
||||||
|
using glTFCommon::FindNumberInContext;
|
||||||
|
using glTFCommon::FindUIntInContext;
|
||||||
|
using glTFCommon::FindArrayInContext;
|
||||||
|
using glTFCommon::FindObjectInContext;
|
||||||
|
using glTFCommon::FindExtensionInContext;
|
||||||
|
using glTFCommon::MemberOrDefault;
|
||||||
|
using glTFCommon::ReadMember;
|
||||||
|
using glTFCommon::FindMember;
|
||||||
|
using glTFCommon::FindObject;
|
||||||
|
using glTFCommon::FindUInt;
|
||||||
|
using glTFCommon::FindArray;
|
||||||
|
using glTFCommon::FindArray;
|
||||||
|
|
||||||
namespace glTF2 {
|
namespace glTF2 {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue