more stringview

This commit is contained in:
Laurent Perron
2025-04-01 07:03:33 +02:00
parent 4af14d7d4f
commit 27c0ca3156

View File

@@ -15,9 +15,9 @@
#define OR_TOOLS_BASE_DYNAMIC_LIBRARY_H_
#include <functional>
#include <stdexcept>
#include <string>
#include "absl/strings/string_view.h"
#include "ortools/base/logging.h"
#if defined(_MSC_VER)
@@ -45,12 +45,12 @@ class DynamicLibrary {
#endif
}
bool TryToLoad(const std::string& library_name) {
library_name_ = std::string(library_name);
bool TryToLoad(const absl::string_view library_name) {
library_name_ = library_name;
#if defined(_MSC_VER) || defined(__MINGW32__) || defined(__MINGW64__)
library_handle_ = static_cast<void*>(LoadLibraryA(library_name.c_str()));
library_handle_ = static_cast<void*>(LoadLibraryA(library_name_.c_str()));
#elif defined(__GNUC__)
library_handle_ = dlopen(library_name.c_str(), RTLD_NOW);
library_handle_ = dlopen(library_name_.c_str(), RTLD_NOW);
#endif
return library_handle_ != nullptr;
}