summaryrefslogtreecommitdiff
path: root/0001-fix-tao-pegtl-contrib-tracer.hpp-No-such-file-or-dir.patch
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2025-08-11 07:45:55 +0000
committerCoprDistGit <infra@openeuler.org>2025-08-11 07:45:55 +0000
commit73f9cdb01152246b97a8822c87a9ba7fb8297f21 (patch)
treebf389fe2bc4a820f3d833c9e0a7fc922eb7443da /0001-fix-tao-pegtl-contrib-tracer.hpp-No-such-file-or-dir.patch
parent7922882d5d8fafb8ba63853aca74a4974febff6f (diff)
automatic import of vtk
Diffstat (limited to '0001-fix-tao-pegtl-contrib-tracer.hpp-No-such-file-or-dir.patch')
-rw-r--r--0001-fix-tao-pegtl-contrib-tracer.hpp-No-such-file-or-dir.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/0001-fix-tao-pegtl-contrib-tracer.hpp-No-such-file-or-dir.patch b/0001-fix-tao-pegtl-contrib-tracer.hpp-No-such-file-or-dir.patch
deleted file mode 100644
index f48302b..0000000
--- a/0001-fix-tao-pegtl-contrib-tracer.hpp-No-such-file-or-dir.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-diff --git a/IO/MotionFX/vtkMotionFXCFGGrammar.h b/IO/MotionFX/vtkMotionFXCFGGrammar.h
-index e58eeb80..67bc5d88 100644
---- a/IO/MotionFX/vtkMotionFXCFGGrammar.h
-+++ b/IO/MotionFX/vtkMotionFXCFGGrammar.h
-@@ -11,7 +11,7 @@
-
- // for debugging
- // clang-format off
--#include VTK_PEGTL(pegtl/contrib/tracer.hpp)
-+#include VTK_PEGTL(pegtl/contrib/trace.hpp)
- // clang-format on
-
- namespace MotionFX
-diff --git a/IO/MotionFX/vtkMotionFXCFGReader.cxx b/IO/MotionFX/vtkMotionFXCFGReader.cxx
-index 9cbf553c..7417a418 100644
---- a/IO/MotionFX/vtkMotionFXCFGReader.cxx
-+++ b/IO/MotionFX/vtkMotionFXCFGReader.cxx
-@@ -1210,7 +1210,7 @@ bool PositionFileMotion::read_position_file(const std::string& rootDir) const
- }
- return true;
- }
-- catch (const tao::pegtl::input_error& e)
-+ catch (const tao::pegtl::parse_error& e)
- {
- vtkGenericWarningMacro("PositionFileMotion::read_position_file failed: " << e.what());
- }
-@@ -1229,7 +1229,7 @@ bool UniversalTransformMotion::read_universaltransform_file(const std::string& r
- in, numbers, this->transforms);
- return true;
- }
-- catch (const tao::pegtl::input_error& e)
-+ catch (const tao::pegtl::parse_error& e)
- {
- vtkGenericWarningMacro(
- "UniversalTransformMotion::read_universaltransform_file failed: " << e.what());
-@@ -1266,7 +1266,7 @@ public:
- if (getenv("MOTIONFX_DEBUG_GRAMMAR") != nullptr)
- {
- tao::pegtl::read_input<> in2(filename);
-- tao::pegtl::parse<MotionFX::CFG::Grammar, tao::pegtl::nothing, tao::pegtl::tracer>(in2);
-+ tao::pegtl::complete_trace<MotionFX::CFG::Grammar>(in2);
- }
- return false;
- }