Util: Revert allow setting instance pointer manually
This is unnecessary as the allocation + placement new works.
This commit is contained in:
@@ -331,6 +331,8 @@ struct Formatter<Specifier> : Formatter<std::nullptr_t> {
|
|||||||
|
|
||||||
} // namespace ruc::format
|
} // namespace ruc::format
|
||||||
|
|
||||||
|
using ruc::format::Formatter;
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
|
|
||||||
TODO:
|
TODO:
|
||||||
|
|||||||
@@ -46,13 +46,6 @@ public:
|
|||||||
protected:
|
protected:
|
||||||
Singleton() {}
|
Singleton() {}
|
||||||
|
|
||||||
// Hack: in certain situations the instance needs to be set early
|
|
||||||
static void set(T* instance)
|
|
||||||
{
|
|
||||||
VERIFY(!s_instance, "singleton already exists");
|
|
||||||
s_instance = instance;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Constructor token
|
// Constructor token
|
||||||
struct s {};
|
struct s {};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user