From 02984b8de11a9dc6ab88788bfae82530b073f1f6 Mon Sep 17 00:00:00 2001 From: chriseth Date: Mon, 5 Sep 2016 14:54:50 +0200 Subject: Require ";" after "_" --- test/contracts/AuctionRegistrar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/contracts/AuctionRegistrar.cpp') diff --git a/test/contracts/AuctionRegistrar.cpp b/test/contracts/AuctionRegistrar.cpp index 681caa26..9161f2ce 100644 --- a/test/contracts/AuctionRegistrar.cpp +++ b/test/contracts/AuctionRegistrar.cpp @@ -158,7 +158,7 @@ contract GlobalRegistrar is Registrar, AuctionSystem { return bytes(_name).length < c_freeBytes; } - modifier onlyrecordowner(string _name) { if (m_toRecord[_name].owner == msg.sender) _ } + modifier onlyrecordowner(string _name) { if (m_toRecord[_name].owner == msg.sender) _; } function transfer(string _name, address _newOwner) onlyrecordowner(_name) { m_toRecord[_name].owner = _newOwner; -- cgit