Browse Source

fixed underscore

cl-refactor
Marek Kotewicz 10 years ago
parent
commit
d23068984e
  1. 4
      libnatspec/NatspecExpressionEvaluator.cpp

4
libnatspec/NatspecExpressionEvaluator.cpp

@ -26,9 +26,9 @@
using namespace std; using namespace std;
using namespace dev; using namespace dev;
static QString contentsOfQResource(string const& res) static QString contentsOfQResource(string const& _res)
{ {
QFile file(QString::fromStdString(res)); QFile file(QString::fromStdString(_res));
if (!file.open(QFile::ReadOnly)) if (!file.open(QFile::ReadOnly))
BOOST_THROW_EXCEPTION(FileError()); BOOST_THROW_EXCEPTION(FileError());
QTextStream in(&file); QTextStream in(&file);

Loading…
Cancel
Save