mirror of
https://github.com/exaloop/codon.git
synced 2025-06-03 15:03:52 +08:00
20 lines
290 B
C++
20 lines
290 B
C++
#include "nodes.h"
|
|
|
|
namespace seq {
|
|
namespace ir {
|
|
namespace dsl {
|
|
|
|
namespace types {
|
|
const char CustomType::NodeId = 0;
|
|
}
|
|
|
|
const char CustomConst::NodeId = 0;
|
|
|
|
const char CustomFlow::NodeId = 0;
|
|
|
|
const char CustomInstr::NodeId = 0;
|
|
|
|
} // namespace dsl
|
|
} // namespace ir
|
|
} // namespace seq
|