Description: fix likely typo caught by modern compilers.
 This change fixes:
 .
        /build/reproducible-path/libsdsl-2.1.1+dfsg/obj-x86_64-linux-gnu/lib/../include/sdsl/louds_tree.hpp:182:51: error: ‘class sdsl::louds_tree<bit_vec_t, select_1_t, select_0_t>’ has no member named ‘m_select1’; did you mean ‘m_bv_select1’? [-Wtemplate-body]
          182 |             util::swap_support(m_bv_select1, tree.m_select1, &m_bv, &(tree.m_bv));
              |                                                   ^~~~~~~~~
              |                                                   m_bv_select1
        /build/reproducible-path/libsdsl-2.1.1+dfsg/obj-x86_64-linux-gnu/lib/../include/sdsl/louds_tree.hpp:183:51: error: ‘class sdsl::louds_tree<bit_vec_t, select_1_t, select_0_t>’ has no member named ‘m_select0’; did you mean ‘m_bv_select0’? [-Wtemplate-body]
          183 |             util::swap_support(m_bv_select0, tree.m_select0, &m_bv, &(tree.m_bv));
              |                                                   ^~~~~~~~~
              |                                                   m_bv_select0
 .
 The fix is inspired by Daniel Saad's comment in the related Github
 issue.
Author: Étienne Mollier <emollier@debian.org>
Bug: https://github.com/simongog/sdsl-lite/issues/462
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1097267
Last-Update: 2025-10-06
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- libsdsl.orig/include/sdsl/louds_tree.hpp
+++ libsdsl/include/sdsl/louds_tree.hpp
@@ -179,8 +179,8 @@
 
         void swap(louds_tree& tree) {
             m_bv.swap(tree.m_bv);
-            util::swap_support(m_bv_select1, tree.m_select1, &m_bv, &(tree.m_bv));
-            util::swap_support(m_bv_select0, tree.m_select0, &m_bv, &(tree.m_bv));
+            util::swap_support(m_bv_select1, tree.m_bv_select1, &m_bv, &(tree.m_bv));
+            util::swap_support(m_bv_select0, tree.m_bv_select0, &m_bv, &(tree.m_bv));
         }
 
         size_type serialize(std::ostream& out, structure_tree_node* v=nullptr, std::string name="")const {
