We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9545d0 commit 82c1b04Copy full SHA for 82c1b04
src/libasr/codegen/asr_to_c_cpp.h
@@ -1298,6 +1298,11 @@ PyMODINIT_FUNC PyInit_lpython_module_)" + fn_name + R"((void) {
1298
last_expr_precedence = 2;
1299
}
1300
1301
+ void visit_UnsignedIntegerConstant(const ASR::UnsignedIntegerConstant_t &x) {
1302
+ src = std::to_string(x.m_n);
1303
+ last_expr_precedence = 2;
1304
+ }
1305
+
1306
void visit_RealConstant(const ASR::RealConstant_t &x) {
1307
// TODO: remove extra spaces from the front of double_to_scientific result
1308
src = double_to_scientific(x.m_r);
0 commit comments