diff options
author | Claire Xen <claire@clairexen.net> | 2023-01-11 16:33:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-11 16:33:08 +0100 |
commit | 843f329b96051bf26804bf3dd6259266257df8ab (patch) | |
tree | 96b2babe96707fb2ba39b369be38dbc4098dacbe /guidelines/CodingStyle | |
parent | 6d56d4ecfc2c9afda3fd58f945a5f10daf87a999 (diff) | |
parent | 5abaa5908082f13f6b574d66f6f8a9ebb476fd54 (diff) | |
download | yosys-843f329b96051bf26804bf3dd6259266257df8ab.tar.gz yosys-843f329b96051bf26804bf3dd6259266257df8ab.tar.bz2 yosys-843f329b96051bf26804bf3dd6259266257df8ab.zip |
Merge branch 'master' into claire/eqystuff
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 |