ソースを参照

Buffer<> has no .empty() method

Grant Limberg 5 年 前
コミット
70b1b4ecc7
1 ファイル変更1 行追加1 行削除
  1. 1 1
      service/OneService.cpp

+ 1 - 1
service/OneService.cpp

@@ -2386,7 +2386,7 @@ public:
 							Dictionary<4096> nc;
 							nc.load(nlcbuf.c_str());
 							Buffer<1024> allowManaged;
-							if (nc.get("allowManaged", allowManaged) && !allowManaged.empty()) {
+							if (nc.get("allowManaged", allowManaged) && !allowManaged.size() == 0) {
 								std::string addresses (allowManaged.begin(), allowManaged.size());
 								if (allowManaged.size() <= 5) { // untidy parsing for backward compatibility
 									if (allowManaged[0] == '1' || allowManaged[0] == 't' || allowManaged[0] == 'T') {