Commit b8e9e4aba7b4e64a3b1049b1f8960cfa77a675f3
Fix compiling tclap headers
Despite -std=c++11, incompatible change of C++20 is somehow an error
with -Werror.
Author: xaizek
Author date (UTC): 2026-08-02 13:41
Committer name: xaizek
Committer date (UTC): 2026-08-02 13:41
Parent(s): aeffc9b470d267b538637acc2776c1a4b5c966a2
Signing key: 99DC5E4DB05F6BE2
Tree: 92362d3cf8946139c0e86b882375082ad697f7c2
| File libs/tclap/MultiArg.h changed (mode: 100644) (index d478df9..d1a3745) |
| ... |
... |
private: |
| 225 |
225 |
/** |
/** |
| 226 |
226 |
* Prevent accidental copying |
* Prevent accidental copying |
| 227 |
227 |
*/ |
*/ |
| 228 |
|
MultiArg<T>(const MultiArg<T>& rhs); |
|
|
228 |
|
MultiArg(const MultiArg<T>& rhs); |
| 229 |
229 |
MultiArg<T>& operator=(const MultiArg<T>& rhs); |
MultiArg<T>& operator=(const MultiArg<T>& rhs); |
| 230 |
230 |
|
|
| 231 |
231 |
}; |
}; |
| File libs/tclap/ValueArg.h changed (mode: 100644) (index 2f65e4c..d663039) |
| ... |
... |
private: |
| 240 |
240 |
/** |
/** |
| 241 |
241 |
* Prevent accidental copying |
* Prevent accidental copying |
| 242 |
242 |
*/ |
*/ |
| 243 |
|
ValueArg<T>(const ValueArg<T>& rhs); |
|
|
243 |
|
ValueArg(const ValueArg<T>& rhs); |
| 244 |
244 |
ValueArg<T>& operator=(const ValueArg<T>& rhs); |
ValueArg<T>& operator=(const ValueArg<T>& rhs); |
| 245 |
245 |
}; |
}; |
| 246 |
246 |
|
|