1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-16 07:07:13 +02:00

Remove CURL/CPR.

This commit is contained in:
Sandu Liviu Catalin
2021-02-02 19:10:51 +02:00
parent fc9419677f
commit 0d05273f3f
60 changed files with 1 additions and 6144 deletions

View File

@ -1,18 +0,0 @@
#ifndef CPR_VERBOSE_H_
#define CPR_VERBOSE_H_
namespace cpr {
class Verbose {
public:
Verbose() = default;
// NOLINTNEXTLINE(google-explicit-constructor, hicpp-explicit-conversions)
Verbose(const bool verbose) : verbose{verbose} {}
bool verbose = true;
};
} // namespace cpr
#endif /* CPR_VERBOSE_H_ */