mirror of https://gitee.com/bigwinds/arangodb
Remove debugging code.
This commit is contained in:
parent
127e7009ef
commit
e42ac23b0f
|
@ -330,12 +330,6 @@ namespace triagens {
|
||||||
/// @{
|
/// @{
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
#if 0
|
|
||||||
public:
|
|
||||||
void guck() {
|
|
||||||
_options.guck();
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
|
@ -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
|
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
/// @}
|
/// @}
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
Loading…
Reference in New Issue