Skip to content

Commit

Permalink
Merge branch 'fix_hugepages' of github.com:simongog/sdsl-lite into fi…
Browse files Browse the repository at this point in the history
…x_hugepages
  • Loading branch information
mpetri committed Sep 12, 2013
2 parents e2a7467 + 89dc9b1 commit 46bf04e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions include/sdsl/rrr_vector.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ class rrr_vector

//! Move constructor
rrr_vector(rrr_vector&& rrr) : m_size(std::move(rrr.m_size)),
m_bt(std::move(rrr.m_bt)),
m_btnr(std::move(rrr.m_btnr)), m_btnrp(std::move(rrr.m_btnrp)),
m_rank(std::move(rrr.m_rank)), m_invert(std::move(rrr.m_invert)) {}

Expand Down
1 change: 1 addition & 0 deletions include/sdsl/rrr_vector_15.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ class rrr_vector<15, t_rac, t_k>

//! Move constructor
rrr_vector(rrr_vector&& rrr) : m_size(std::move(rrr.m_size)),
m_bt(std::move(rrr.m_bt)),
m_btnr(std::move(rrr.m_btnr)), m_btnrp(std::move(rrr.m_btnrp)),
m_rank(std::move(rrr.m_rank)) {}

Expand Down

0 comments on commit 46bf04e

Please sign in to comment.