summaryrefslogtreecommitdiff
path: root/modules/codec-unit/c++/unit_transform.hpp
blob: 6f40df52f1827f50ea470204a04b0a6fbab6c1a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include <type_traits>
#include "unit_schema.hpp"

namespace saw {
namespace impl {

template<typename T, typename U>
class unit_matching;

template<typename... T>
class unit_redux_list {
	static_assert(sizeof...(T) == 0u, "Template type not supported");

	using reduced_type = unit_redux_list<>;
};
}
}