1
0
Fork 0

Remove debugging code.

This commit is contained in:
Max Neunhoeffer 2014-02-04 16:21:18 +01:00
parent 127e7009ef
commit e42ac23b0f
2 changed files with 0 additions and 30 deletions

View File

@ -330,12 +330,6 @@ namespace triagens {
/// @{ /// @{
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
#if 0
public:
void guck() {
_options.guck();
}
#endif
private: private:
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////

View File

@ -133,30 +133,6 @@ namespace triagens {
string lastError (); string lastError ();
#if 0
void guck () {
vector<string>::iterator i;
map<string,char **>::iterator j;
cout << "OPTGUCK:" << endl;
for (i = _options.begin(); i != _options.end(); ++i) {
j = _valuesString.find(*i);
if (j == _valuesString.end()) {
cout << "OPT: " << *i << " not in _valuesString" << endl;
}
else if (0 == j->second) {
cout << "OPT: " << *i << " is 0" << endl;
}
else if (0 == *(j->second)) {
cout << "OPT: " << *i << " is *0" << endl;
}
else {
cout << "OPT: " << *i << " with value " << *(j->second) << endl;
}
}
}
#endif
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
/// @} /// @}
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////