aboutsummaryrefslogtreecommitdiff
path: root/libbutl/manifest-serializer.ixx
blob: 08778520d93c67bdd42b66b9599f797845f35e7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// file      : libbutl/manifest-serializer.ixx -*- C++ -*-
// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

namespace butl
{
  inline void manifest_serializer::
  next (const std::string& n, const std::string& v)
  {
    if (!filter_ || filter_ (n, v))
      write_next (n, v);
  }
}