aboutsummaryrefslogtreecommitdiff
path: root/libbutl/manifest-parser.ixx
diff options
context:
space:
mode:
Diffstat (limited to 'libbutl/manifest-parser.ixx')
-rw-r--r--libbutl/manifest-parser.ixx14
1 files changed, 14 insertions, 0 deletions
diff --git a/libbutl/manifest-parser.ixx b/libbutl/manifest-parser.ixx
new file mode 100644
index 0000000..b308264
--- /dev/null
+++ b/libbutl/manifest-parser.ixx
@@ -0,0 +1,14 @@
+// file : libbutl/manifest-parser.ixx -*- C++ -*-
+// copyright : Copyright (c) 2014-2018 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+namespace butl
+{
+ inline manifest_name_value manifest_parser::
+ next ()
+ {
+ manifest_name_value r;
+ do { parse_next (r); } while (filter_ && !filter_ (r));
+ return r;
+ }
+}