Skip to content

Commit 830abba

Browse files
MM Best Fit Plane - Fix missing include on GCC/Linux
The code is failing to build on Linux with GCC, because it's missing the "cstring" header, which the spec says it should use, but MSVC doesn't care about. https://en.cppreference.com/w/cpp/string/byte/strcmp
1 parent 217a620 commit 830abba

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/mmSolver/cmd/MMBestFitPlaneCmd.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@
7575

7676
// STL
7777
#include <cassert>
78+
#include <cstring>
7879

7980
// Maya
8081
#include <maya/MArgDatabase.h>

0 commit comments

Comments
 (0)