mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Fix some semantic usability issues with DynamicLibrary.
This patch allows invalid DynamicLibrary instances to be constructed, and fixes the const-correctness of the isValid() method. No functional change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216571 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d8e448bd27
commit
7132e325d5
@ -43,10 +43,11 @@ namespace sys {
|
||||
// Opaque data used to interface with OS-specific dynamic library handling.
|
||||
void *Data;
|
||||
|
||||
explicit DynamicLibrary(void *data = &Invalid) : Data(data) {}
|
||||
public:
|
||||
explicit DynamicLibrary(void *data = &Invalid) : Data(data) {}
|
||||
|
||||
/// Returns true if the object refers to a valid library.
|
||||
bool isValid() { return Data != &Invalid; }
|
||||
bool isValid() const { return Data != &Invalid; }
|
||||
|
||||
/// Searches through the library for the symbol \p symbolName. If it is
|
||||
/// found, the address of that symbol is returned. If not, NULL is returned.
|
||||
|
Loading…
Reference in New Issue
Block a user