summaryrefslogtreecommitdiff
path: root/libpqpp/pq-helpers.h
blob: 76e5057f46e378bc28ad66b772d747250718052f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef PQ_HELPERS_H
#define PQ_HELPERS_H

namespace PQ {
	template<auto func> struct pq_deleter {
		void
		operator()(auto p) const
		{
			func(p);
		}
	};
}

#endif