MCPcopy Create free account
hub / github.com/csmith-project/csmith / CreateInstance

Method CreateInstance

src/SimpleDeltaSequence.cpp:105–115  ·  view source on GitHub ↗

* Create singleton instance. */

Source from the content-addressed store, hash-verified

103 * Create singleton instance.
104 */
105SimpleDeltaSequence*
106SimpleDeltaSequence::CreateInstance(const char sep_char)
107{
108 if (impl_)
109 return impl_;
110
111 impl_ = new SimpleDeltaSequence(sep_char);
112 assert(impl_);
113
114 return impl_;
115}
116
117/*
118 *

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected