0d753a0d79
Check if checksums are in sync / android (push) Failing after 1m42s
Check if dart bindings are in sync / android (push) Failing after 16s
Build documentation / build (push) Has been cancelled
full compatibility check / lib_mingw (monero) (push) Has been cancelled
full compatibility check / lib_mingw (peya) (push) Has been cancelled
full compatibility check / lib_mingw (salvium) (push) Has been cancelled
full compatibility check / lib_android (monero) (push) Has been cancelled
full compatibility check / lib_android (peya) (push) Has been cancelled
full compatibility check / lib_android (salvium) (push) Has been cancelled
full compatibility check / lib_linux (monero) (push) Has been cancelled
full compatibility check / lib_linux (peya) (push) Has been cancelled
full compatibility check / lib_linux (salvium) (push) Has been cancelled
full compatibility check / macos build (monero) (push) Has been cancelled
full compatibility check / macos build (peya) (push) Has been cancelled
full compatibility check / macos build (salvium) (push) Has been cancelled
full compatibility check / ios build (monero) (push) Has been cancelled
full compatibility check / ios build (peya) (push) Has been cancelled
full compatibility check / ios build (salvium) (push) Has been cancelled
full compatibility check / create single release file (push) Has been cancelled
full compatibility check / test ts library (push) Has been cancelled
full compatibility check / linux regression tests (monero) (push) Has been cancelled
full compatibility check / linux regression tests (peya) (push) Has been cancelled
full compatibility check / linux regression tests (salvium) (push) Has been cancelled
full compatibility check / macos regression tests (monero) (push) Has been cancelled
full compatibility check / macos regression tests (peya) (push) Has been cancelled
full compatibility check / macos regression tests (salvium) (push) Has been cancelled
full compatibility check / linux integration tests (monero) (push) Has been cancelled
full compatibility check / linux integration tests (peya) (push) Has been cancelled
full compatibility check / linux integration tests (salvium) (push) Has been cancelled
full compatibility check / macos integration tests (monero) (push) Has been cancelled
full compatibility check / macos integration tests (peya) (push) Has been cancelled
full compatibility check / macos integration tests (salvium) (push) Has been cancelled
full compatibility check / comment on pr (push) Has been cancelled
32 lines
1.8 KiB
C++
32 lines
1.8 KiB
C++
#include <vector>
|
|
#include <string>
|
|
#include <set>
|
|
#include <sstream>
|
|
#include <cstdlib>
|
|
#include <iostream>
|
|
|
|
// Debug macros
|
|
#define DEBUG_START() \
|
|
try {
|
|
|
|
#define DEBUG_END() \
|
|
} catch (const std::exception &e) { \
|
|
std::cerr << "Exception caught in function: " << __FUNCTION__ \
|
|
<< " at " << __FILE__ << ":" << __LINE__ << std::endl \
|
|
<< "Message: " << e.what() << std::endl; \
|
|
std::abort(); \
|
|
} catch (...) { \
|
|
std::cerr << "Unknown exception caught in function: " << __FUNCTION__ \
|
|
<< " at " << __FILE__ << ":" << __LINE__ << std::endl; \
|
|
std::abort(); \
|
|
}
|
|
|
|
|
|
const char* vectorToString(const std::vector<std::string>& vec, const std::string separator);
|
|
const char* vectorToString(const std::vector<uint32_t>& vec, const std::string separator);
|
|
const char* vectorToString(const std::vector<uint64_t>& vec, const std::string separator);
|
|
const char* vectorToString(const std::vector<std::set<uint32_t>>& vec, const std::string separator);
|
|
const char* vectorToString(const std::set<uint32_t>& intSet, const std::string separator);
|
|
std::set<std::string> splitString(const std::string& str, const std::string& delim);
|
|
std::vector<uint64_t> splitStringUint(const std::string& str, const std::string& delim);
|
|
std::vector<std::string> splitStringVector(const std::string& str, const std::string& delim); |