mirror of
https://github.com/exaloop/codon.git
synced 2025-06-03 15:03:52 +08:00
* namespace seq to codon * using namespace seq -> codon * seq:: to codon:: Co-authored-by: ‘markhend’ <‘markhend@gmail.com’>
20 lines
294 B
C++
20 lines
294 B
C++
#include "nodes.h"
|
|
|
|
namespace codon {
|
|
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 codon
|