Browse Source

removed build errors

cl-refactor
Marek Kotewicz 10 years ago
parent
commit
3689a363cf
  1. 8
      libdevcore/CommonJS.cpp

8
libdevcore/CommonJS.cpp

@ -3,7 +3,7 @@
namespace dev { namespace dev {
namespace eth { namespace eth {
bytes dev::eth::jsToBytes(std::string const& _s) bytes jsToBytes(std::string const& _s)
{ {
if (_s.substr(0, 2) == "0x") if (_s.substr(0, 2) == "0x")
// Hex // Hex
@ -16,7 +16,7 @@ bytes dev::eth::jsToBytes(std::string const& _s)
return asBytes(_s); return asBytes(_s);
} }
std::string dev::eth::jsPadded(std::string const& _s, unsigned _l, unsigned _r) std::string jsPadded(std::string const& _s, unsigned _l, unsigned _r)
{ {
bytes b = jsToBytes(_s); bytes b = jsToBytes(_s);
while (b.size() < _l) while (b.size() < _l)
@ -26,7 +26,7 @@ std::string dev::eth::jsPadded(std::string const& _s, unsigned _l, unsigned _r)
return asString(b).substr(b.size() - std::max(_l, _r)); return asString(b).substr(b.size() - std::max(_l, _r));
} }
std::string dev::eth::jsPadded(std::string const& _s, unsigned _l) std::string jsPadded(std::string const& _s, unsigned _l)
{ {
if (_s.substr(0, 2) == "0x" || _s.find_first_not_of("0123456789") == std::string::npos) if (_s.substr(0, 2) == "0x" || _s.find_first_not_of("0123456789") == std::string::npos)
// Numeric: pad to right // Numeric: pad to right
@ -36,7 +36,7 @@ std::string dev::eth::jsPadded(std::string const& _s, unsigned _l)
return jsPadded(_s, 0, _l); return jsPadded(_s, 0, _l);
} }
std::string dev::eth::jsUnpadded(std::string _s) std::string jsUnpadded(std::string _s)
{ {
auto p = _s.find_last_not_of((char)0); auto p = _s.find_last_not_of((char)0);
_s.resize(p == std::string::npos ? 0 : (p + 1)); _s.resize(p == std::string::npos ? 0 : (p + 1));

Loading…
Cancel
Save