We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
const
1 parent a1121b3 commit d7b9968Copy full SHA for d7b9968
src/engine/data_loader.cc
@@ -225,7 +225,7 @@ void DataLoader::MaybeBuildNewData() {
225
}
226
227
228
-bool DataLoader::IsBuildResponseReady() {
+bool DataLoader::IsBuildResponseReady() const {
229
return loader_response_future_ && loader_response_future_->Ready();
230
231
src/engine/data_loader.h
@@ -96,7 +96,7 @@ class DataLoader {
96
void MaybeBuildNewData();
97
98
// Returns true if a new data loader response is ready.
99
- bool IsBuildResponseReady();
+ bool IsBuildResponseReady() const;
100
101
// Maybe move the data loader response to the caller.
102
// Otherwise nullptr is returned.
0 commit comments