aboutsummaryrefslogtreecommitdiff
path: root/trie.inc.h
diff options
context:
space:
mode:
Diffstat (limited to 'trie.inc.h')
-rw-r--r--trie.inc.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/trie.inc.h b/trie.inc.h
index 5517939e..90d9cb06 100644
--- a/trie.inc.h
+++ b/trie.inc.h
@@ -163,4 +163,10 @@ FMT_F(TRIE(TYPE)) {
return seek;
}
+int DEEP_COPY(TRIE(TYPE)) (TRIE(TYPE)* dest, TRIE(TYPE)* src) {
+ (void) dest; (void) src;
+ ERR(deep copy on tries currently not implemented);
+ return 1;
+}
+
#endif /* TYPE */