diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2023-01-11 09:54:19 +0100 |
---|---|---|
committer | Miodrag Milanovic <mmicko@gmail.com> | 2023-01-11 09:54:19 +0100 |
commit | 5801152779826481df6da6a2876d4b3aae5533cd (patch) | |
tree | 96dc79544fcd0c5ba311fdc1a76511c6e41ec434 /guidelines/CodingStyle | |
parent | 7b476996df962b63656152f643ff2181143f516e (diff) | |
download | yosys-5801152779826481df6da6a2876d4b3aae5533cd.tar.gz yosys-5801152779826481df6da6a2876d4b3aae5533cd.tar.bz2 yosys-5801152779826481df6da6a2876d4b3aae5533cd.zip |
Deprecate gcc-4.8
Diffstat (limited to 'guidelines/CodingStyle')
-rw-r--r-- | guidelines/CodingStyle | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/guidelines/CodingStyle b/guidelines/CodingStyle index d3d3a7134..ee1e1a2b6 100644 --- a/guidelines/CodingStyle +++ b/guidelines/CodingStyle @@ -25,8 +25,7 @@ Formatting of code C++ Language ------------- -Yosys is written in C++11. At the moment only constructs supported by -gcc 4.8 are allowed in Yosys code. This will change in future releases. +Yosys is written in C++11. In general Yosys uses "int" instead of "size_t". To avoid compiler warnings for implicit type casts, always use "GetSize(foobar)" instead |