From e2cb3c3e58a1d7417004b2395d44421badd8c010 Mon Sep 17 00:00:00 2001 From: ritzdorf Date: Tue, 27 Jun 2017 15:07:39 +0200 Subject: [PATCH] add pragma to remove warnings --- strings.sol | 1 + strings_test.sol | 1 + 2 files changed, 2 insertions(+) diff --git a/strings.sol b/strings.sol index 0a2d68bd..7f2d0ef4 100644 --- a/strings.sol +++ b/strings.sol @@ -1,3 +1,4 @@ +pragma solidity ^0.4.11; /* * @title String & slice utility library for Solidity contracts. * @author Nick Johnson diff --git a/strings_test.sol b/strings_test.sol index efd182c7..9c0903ba 100644 --- a/strings_test.sol +++ b/strings_test.sol @@ -1,3 +1,4 @@ +pragma solidity ^0.4.11; import 'dapple/test.sol'; import 'strings.sol';