Skip to content

Commit

Permalink
Merge branch 'master' into f-FixWhitespaceBetweenTagAndNum
Browse files Browse the repository at this point in the history
  • Loading branch information
MMory authored Jan 17, 2023
2 parents a89d5c7 + d640a89 commit 7f6e967
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions code/AssetLib/M3D/M3DWrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
----------------------------------------------------------------------
*/
#ifndef ASSIMP_BUILD_NO_M3D_IMPORTER
#if !(ASSIMP_BUILD_NO_EXPORT || ASSIMP_BUILD_NO_M3D_EXPORTER)
#if !defined ASSIMP_BUILD_NO_M3D_IMPORTER || !(defined ASSIMP_BUILD_NO_EXPORT || defined ASSIMP_BUILD_NO_M3D_EXPORTER)

#include "M3DWrapper.h"

Expand Down Expand Up @@ -149,4 +148,3 @@ void M3DWrapper::ClearSave() {
} // namespace Assimp

#endif
#endif
4 changes: 1 addition & 3 deletions code/AssetLib/M3D/M3DWrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef AI_M3DWRAPPER_H_INC
#define AI_M3DWRAPPER_H_INC

#ifndef ASSIMP_BUILD_NO_M3D_IMPORTER
#if !(ASSIMP_BUILD_NO_EXPORT || ASSIMP_BUILD_NO_M3D_EXPORTER)
#if !defined ASSIMP_BUILD_NO_M3D_IMPORTER || !(defined ASSIMP_BUILD_NO_EXPORT || defined ASSIMP_BUILD_NO_M3D_EXPORTER)

#include <memory>
#include <vector>
Expand Down Expand Up @@ -126,7 +125,6 @@ inline m3d_t *M3DWrapper::M3D() const {

} // namespace Assimp

#endif
#endif // ASSIMP_BUILD_NO_M3D_IMPORTER

#endif // AI_M3DWRAPPER_H_INC

0 comments on commit 7f6e967

Please sign in to comment.