T2345: Replace instances of NULL with nullptr

Per guidance from Axel, revert lib/kokkos and lib/colvars
to remove nullptr changes.
This commit is contained in:
Anne Gunn
2020-09-11 08:53:44 -06:00
parent 9a5d8fd18b
commit f524fa758d
31 changed files with 196 additions and 196 deletions

View File

@ -674,12 +674,12 @@ bool colvarparse::key_lookup(std::string const &conf,
std::string const conf_lower(to_lower_cppstr(conf));
// by default, there is no value, unless we found one
if (data != nullptr) {
if (data != NULL) {
data->clear();
}
// start from the first occurrence of key
size_t pos = conf_lower.find(key, (save_pos != nullptr) ? *save_pos : 0);
size_t pos = conf_lower.find(key, (save_pos != NULL) ? *save_pos : 0);
// iterate over all instances of the substring until it finds it as isolated keyword
while (true) {
@ -727,7 +727,7 @@ bool colvarparse::key_lookup(std::string const &conf,
}
}
if (save_pos != nullptr) {
if (save_pos != NULL) {
// save the pointer for a future call (when iterating over multiple
// valid instances of the same keyword)
*save_pos = pos + key.size();
@ -820,7 +820,7 @@ bool colvarparse::key_lookup(std::string const &conf,
data_end) + 1;
}
if (data != nullptr) {
if (data != NULL) {
data->append(line, data_begin, (data_end-data_begin));
if (cvm::debug()) {
@ -834,7 +834,7 @@ bool colvarparse::key_lookup(std::string const &conf,
}
}
if (save_pos != nullptr) *save_pos = line_end;
if (save_pos != NULL) *save_pos = line_end;
return true;
}