Index: dm/DM.cpp |
diff --git a/dm/DM.cpp b/dm/DM.cpp |
index 07518c9b20ef527620ea9cb285452c9e04425195..139e9eb82396d35e09c69bfa979a321093b694fd 100644 |
--- a/dm/DM.cpp |
+++ b/dm/DM.cpp |
@@ -366,6 +366,7 @@ static Sink* create_sink(const char* tag) { |
static Sink* create_via(const char* tag, Sink* wrapped) { |
#define VIA(t, via, ...) if (0 == strcmp(t, tag)) { return new via(__VA_ARGS__); } |
+ VIA("twice", ViaTwice, wrapped); |
VIA("pipe", ViaPipe, wrapped); |
VIA("serialize", ViaSerialization, wrapped); |
VIA("deferred", ViaDeferred, wrapped); |