diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-03-24 08:53:06 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-03-24 08:53:06 +0200 |
commit | a94dcda7f00b10cb22b5f2138b1c29bcfbe7de37 (patch) | |
tree | c4ca2c4b2ea08285774569283120233a03aa2cb3 /build/string-table | |
parent | eaaa82bd9c1e24a83dcea3857f5fd75d0dfb6de5 (diff) |
Make meta-operations control build loop; add disfigure skeleton
Diffstat (limited to 'build/string-table')
-rw-r--r-- | build/string-table | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/build/string-table b/build/string-table index 39c8cff..7a74024 100644 --- a/build/string-table +++ b/build/string-table @@ -67,6 +67,9 @@ namespace build I size () const {return static_cast<I> (vec_.size ());} + bool + empty () const {return vec_.empty ();} + private: using key_type = map_key<std::string>; using value_type = string_table_element<I, D>; |