Skip to content
This repository has been archived by the owner on Jun 3, 2021. It is now read-only.

Commit

Permalink
Don't set __STDC_IEC_559__
Browse files Browse the repository at this point in the history
  • Loading branch information
hdamron17 authored and Joshua Nelson committed Aug 16, 2020
1 parent e5ef1f6 commit 10019bf
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/lex/cpp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,6 @@ impl<'a> PreProcessor<'a> {
"__STDC_NO_COMPLEX__".into() => int_def(1),
"__STDC_NO_THREADS__".into() => int_def(1),
"__STDC_NO_VLA__".into() => int_def(1),
"__STDC_IEC_559__".into() => int_def(1),
"__DATE__".into() => str_def(&now.format("%b %_d %Y")),
"__TIME__".into() => str_def(&now.format("%H:%M:%S")),
};
Expand Down

0 comments on commit 10019bf

Please sign in to comment.