repr 0.1
Reconstructable string representations and more
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages Concepts
pointer.h
Go to the documentation of this file.
#pragma once
#include <string>
namespace librepr {
return "nullptr";
}
inline std::string repr(char const* obj) {
return REPR_FORMAT("\"{}\"", obj);
}
inline std::string repr(void const* obj){
return REPR_FORMAT("{}", obj);
}
} // namespace librepr