File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,19 +5,19 @@ import "browser/library.sol";
5
5
contract TestLibrary {
6
6
using IntExtended for uint ;
7
7
8
- function testIncrement (uint _base ) returns (uint ) {
8
+ function testIncrement (uint _base ) public pure returns (uint ) {
9
9
return IntExtended.increment (_base);
10
10
}
11
11
12
- function testDecrement (uint _base ) returns (uint ) {
12
+ function testDecrement (uint _base ) public pure returns (uint ) {
13
13
return IntExtended.decrement (_base);
14
14
}
15
15
16
- function testIncrementByValue (uint _base , uint _value ) returns (uint ) {
16
+ function testIncrementByValue (uint _base , uint _value ) public pure returns (uint ) {
17
17
return _base.incrementByValue (_value);
18
18
}
19
19
20
- function testDecrementByValue (uint _base , uint _value ) returns (uint ) {
20
+ function testDecrementByValue (uint _base , uint _value ) public pure returns (uint ) {
21
21
return _base.decrementByValue (_value);
22
22
}
23
23
}
You can’t perform that action at this time.
0 commit comments