summaryrefslogtreecommitdiffstats
path: root/core/macros.hh
blob: 9042f4923e32f185c6c7656650fec747a440fa09 (plain)
1
2
3
4
5
6
7
8
9
#ifndef CORE_MACROS_HH
#define CORE_MACROS_HH 1
#pragma once

#define DECLARE_DEFAULT_CTOR(type) \
public:                            \
    type(void) = default

#endif /* CORE_MACROS_HH */