xaizek / pipedial (License: GPLv3 only) (since 2019-01-08)
One more tool for selecting something in console.
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 Lines added Lines deleted
libs/tclap/MultiArg.h 1 1
libs/tclap/ValueArg.h 1 1
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
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/pipedial

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/pipedial

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master