aboutsummaryrefslogtreecommitdiff
path: root/libbutl/manifest-serializer.ixx
blob: eebde193736336f84536880c7fa20e144d25ffb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// file      : libbutl/manifest-serializer.ixx -*- C++ -*-
// 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);
  }
}