View | Details | Raw Unified | Return to bug 280893
Collapse All | Expand All

(-)b/math/vtk9/files/patch-ThirdParty_diy2_vtkdiy2_include_vtkdiy2_fmt_format.h (+18 lines)
Added Link Here
1
--- ThirdParty/diy2/vtkdiy2/include/vtkdiy2/fmt/format.h.orig	2023-02-15 04:03:53 UTC
2
+++ ThirdParty/diy2/vtkdiy2/include/vtkdiy2/fmt/format.h
3
@@ -480,6 +480,7 @@ void buffer<T>::append(const U* begin, const U* end) {
4
 }
5
 }  // namespace internal
6
 
7
+#ifdef __cpp_char8_t
8
 // A UTF-8 string view.
9
 class u8string_view : public basic_string_view<char8_t> {
10
  public:
11
@@ -497,6 +498,7 @@ inline u8string_view operator"" _u(const char* s, std:
12
 }
13
 }  // namespace literals
14
 #endif
15
+#endif // __cpp_char8_t
16
 
17
 // The number of characters to store in the basic_memory_buffer object itself
18
 // to avoid dynamic memory allocation.
(-)b/math/vtk9/files/patch-Utilities_octree_octree_octree__node.txx (+11 lines)
Added Link Here
1
--- Utilities/octree/octree/octree_node.txx.orig	2023-02-15 04:03:53 UTC
2
+++ Utilities/octree/octree/octree_node.txx
3
@@ -207,7 +207,7 @@ const octree_node<T_, d_, A_>& octree_node<T_, d_, A_>
4
   {
5
     throw std::domain_error("Attempt to access children of an octree leaf node.");
6
   }
7
-  return this->_M_chilren[child];
8
+  return this->m_children[child];
9
 }
10
 
11
 /**\brief Return a reference to a child node.

Return to bug 280893