aboutsummaryrefslogtreecommitdiffstats
path: root/InterfaceHandler.cpp
diff options
context:
space:
mode:
authorLiana Husikyan <liana@ethdev.com>2015-06-09 19:22:36 +0800
committerLiana Husikyan <liana@ethdev.com>2015-06-09 19:25:09 +0800
commitf5808185f084c17ea19a85af93fdf80e38d53b73 (patch)
tree6d2cb7017c006e3692b61e8edeb065f82cfe5158 /InterfaceHandler.cpp
parent13a64777dea5aaf65fc176bfdf839e08ffec0f4d (diff)
downloaddexon-solidity-f5808185f084c17ea19a85af93fdf80e38d53b73.tar.gz
dexon-solidity-f5808185f084c17ea19a85af93fdf80e38d53b73.tar.zst
dexon-solidity-f5808185f084c17ea19a85af93fdf80e38d53b73.zip
style fixes
Diffstat (limited to 'InterfaceHandler.cpp')
-rw-r--r--InterfaceHandler.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/InterfaceHandler.cpp b/InterfaceHandler.cpp
index 8ad7b7c6..a9d54cdc 100644
--- a/InterfaceHandler.cpp
+++ b/InterfaceHandler.cpp
@@ -246,8 +246,10 @@ void InterfaceHandler::resetDev()
m_params.clear();
}
-static inline string::const_iterator skipLineOrEOS(string::const_iterator _nlPos,
- string::const_iterator _end)
+static inline string::const_iterator skipLineOrEOS(
+ string::const_iterator _nlPos,
+ string::const_iterator _end
+)
{
return (_nlPos == _end) ? _end : ++_nlPos;
}