From 530a40d0e1d55f5f1128da8bdd184b8abab05b62 Mon Sep 17 00:00:00 2001 From: Henrik Halen Date: Wed, 26 Jun 2019 16:04:54 -0700 Subject: [PATCH] Remove dead code causing compilation issues. --- src/gltf/Raw2Gltf.hpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/gltf/Raw2Gltf.hpp b/src/gltf/Raw2Gltf.hpp index d1cef7f..305b437 100644 --- a/src/gltf/Raw2Gltf.hpp +++ b/src/gltf/Raw2Gltf.hpp @@ -153,20 +153,6 @@ struct AttributeDefinition { glType(_glType), dracoAttribute(draco::GeometryAttribute::INVALID), dracoComponentType(draco::DataType::DT_INVALID) {} - - AttributeDefinition( - const std::string gltfName, - const T RawVertex::*rawAttributeIx, - const GLType& _glType, - const draco::GeometryAttribute::Type dracoAttribute, - const draco::DataType dracoComponentType, - const int arrayOffset) - : gltfName(gltfName), - rawAttributeIx(rawAttributeIx), - glType(_glType), - dracoAttribute(dracoAttribute), - dracoComponentType(dracoComponentType), - arrayOffset(arrayOffset){} }; template