Skip to content

Commit 15796ba

Browse files
authored
Merge branch 'develop' into fix-compilation
2 parents 9446ea1 + 7e07007 commit 15796ba

File tree

6 files changed

+4
-63
lines changed

6 files changed

+4
-63
lines changed

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Our Pledge
44

55
In the interest of fostering an open and welcoming environment, we as
6-
contributors and maintainers pledge to making participation in our project and
6+
contributors and maintainers pledge to make participation in our project and
77
our community a harassment-free experience for everyone, regardless of age, body
88
size, disability, ethnicity, sex characteristics, gender identity and expression,
99
level of experience, education, socioeconomic status, nationality, personal

docs/assembly.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ Local Solidity variables are available for assignments, for example:
209209
``assembly { signextend(<num_bytes_of_x_minus_one>, x) }``
210210

211211

212-
Since Solidity 0.6.0, the name of a inline assembly variable may not
212+
Since Solidity 0.6.0, the name of an inline assembly variable may not
213213
shadow any declaration visible in the scope of the inline assembly block
214214
(including variable, contract and function declarations).
215215

docs/installing-solidity.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ And for Windows:
505505
cmake -G "Visual Studio 16 2019" ..
506506
507507
In case you want to use the version of boost installed by ``scripts\install_deps.ps1``, you will
508-
additionally need to pass ``-DBoost_DIR="deps\boost\lib\cmake\Boost-*"`` and ``-DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded``
508+
additionally need to pass ``-DBoost_ROOT="deps/boost" -DBoost_INCLUDE_DIR="deps/boost/include"`` and ``-DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded``
509509
as arguments to the call to ``cmake``.
510510

511511
This should result in the creation of **solidity.sln** in that build directory.

test/cmdlineTests/standard_model_checker_show_unsupported_false_all_engines/standard_model_checker_show_unsupported_false_all_enginesstandard_model_checker_show_unsupported_false_bmc/input.json

Lines changed: 0 additions & 27 deletions
This file was deleted.

test/cmdlineTests/standard_model_checker_show_unsupported_false_all_engines/standard_model_checker_show_unsupported_false_all_enginesstandard_model_checker_show_unsupported_false_bmc/output.json

Lines changed: 0 additions & 32 deletions
This file was deleted.

test/libsolidity/syntaxTests/bytecodeReferences/circular_reference_internal_function.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
contract C
22
{
3-
// Internal uncalled function should not cause an cyclic dep. error
3+
// Internal uncalled function should not cause a cyclic dep. error
44
function foo() internal { new D(); }
55
function callFoo() virtual public { foo(); }
66
}

0 commit comments

Comments
 (0)