diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-03-20 13:21:18 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-03-20 13:21:18 +0200 |
commit | eaaa82bd9c1e24a83dcea3857f5fd75d0dfb6de5 (patch) | |
tree | 9d849682e5c8fb971382843064ea0c286d753cba /build/string-table | |
parent | b6e72877a1a26a6ae16961728ee57e45f657f717 (diff) |
New consolidated load/match/build loop
Diffstat (limited to 'build/string-table')
-rw-r--r-- | build/string-table | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/build/string-table b/build/string-table index 522476f..39c8cff 100644 --- a/build/string-table +++ b/build/string-table @@ -33,14 +33,7 @@ namespace build }; template <typename D> - struct string_table_traits - { - // By default, look for the key() function in D. But you can - // also specialize this class template. - // - static const std::string& - key (const D& d) {return d.key ();} - }; + struct string_table_traits; template <> struct string_table_traits<std::string> |