File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -113,3 +113,4 @@ CMakeUserPresets.json
113113logs /
114114conan.lock
115115graph_info.json
116+ .vsconan /config.json
Original file line number Diff line number Diff line change 99
1010class SISLConan (ConanFile ):
1111 name = "sisl"
12- version = "13.1.0 "
12+ version = "13.1.1 "
1313
1414 homepage = "https://github.com/eBay/sisl"
1515 description = "Library for fast data structures, utilities"
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ class atomic_counter {
3737 atomic_counter (const atomic_counter& other) : m_count{other.m_count .load (std::memory_order_acquire)} {}
3838 atomic_counter (atomic_counter&& other) noexcept : m_count{std::move (other.m_count )} {}
3939 atomic_counter& operator =(const atomic_counter& rhs) {
40- if (this != &rhs) { m_count.store (rhs.load (std::memory_order_acquire), std::memory_order_release); }
40+ if (this != &rhs) { m_count.store (rhs.m_count . load (std::memory_order_acquire), std::memory_order_release); }
4141 return *this ;
4242 }
4343 atomic_counter& operator =(atomic_counter&& rhs) noexcept {
You can’t perform that action at this time.
0 commit comments