summaryrefslogtreecommitdiff
path: root/src/mtrie.hpp
diff options
context:
space:
mode:
authorStaffan Gimåker <staffan@spotify.com>2012-02-16 10:04:12 +0900
committerMartin Sustrik <sustrik@250bpm.com>2012-02-16 10:04:12 +0900
commit133fbca6fac3c517b694ffec6b6a5c7050283a84 (patch)
tree3136b7ce6f0fac541210bfe468d4f9efd0618d60 /src/mtrie.hpp
parenta8ff3a4fed18d26779375394661a2a9222749960 (diff)
Reduce memory usage of mtrie.
Signed-off-by: Staffan Gimåker <staffan@spotify.com> Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/mtrie.hpp')
-rw-r--r--src/mtrie.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mtrie.hpp b/src/mtrie.hpp
index 45426ae..9545ae4 100644
--- a/src/mtrie.hpp
+++ b/src/mtrie.hpp
@@ -73,7 +73,7 @@ namespace xs
bool is_redundant () const;
typedef std::set <xs::pipe_t*> pipes_t;
- pipes_t pipes;
+ pipes_t *pipes;
unsigned char min;
unsigned short count;