Skip to content
Snippets Groups Projects
Commit 020a9be4 authored by Christoph Lehmann's avatar Christoph Lehmann
Browse files

[AsmL] GlobalSetup is singleton.

parent 5509039b
No related branches found
No related tags found
No related merge requests found
...@@ -60,7 +60,8 @@ struct GlobalSetup ...@@ -60,7 +60,8 @@ struct GlobalSetup
return Executor::transform(std::forward<Args>(args)...); return Executor::transform(std::forward<Args>(args)...);
} }
GlobalSetup() { } //! Do not create any instances; this struct only has static members.
GlobalSetup() = delete;
}; };
} // namespace AssemblerLib } // namespace AssemblerLib
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment