File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ std::vector<std::string> vec;
43
43
gfx::timsort(vec.begin(), vec.end(), std::less<size_t>(), &len);
44
44
```
45
45
46
- ## COMPATIBILITY
46
+ ## INSTALLATION & COMPATIBILITY
47
47
48
48
This library is compatible with C++98, but if you compile it with C++11 or higher it will try to use `std::move()`
49
49
when possible instead of copying vaues around, which notably allows to sort collections of move-only types (see
@@ -67,6 +67,13 @@ cd build
67
67
make install
68
68
```
69
69
70
+ Alternatively the library is also available on conan-center-index and can be installed in your local Conan cache via
71
+ the following command:
72
+
73
+ ``` sh
74
+ conan install timsort/1.2.1
75
+ ```
76
+
70
77
## DIAGNOSTICS & INFORMATION
71
78
72
79
A few configuration macros allow gfx::timsort to emit diagnostic, which might be helpful to diagnose issues:
You can’t perform that action at this time.
0 commit comments