summaryrefslogtreecommitdiffstats
path: root/util/system/dynlib.cpp
diff options
context:
space:
mode:
authordanlark <[email protected]>2022-02-10 16:46:08 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:46:08 +0300
commit3426a9bc7f169ae9da54cef557ad2a33f6e8eee0 (patch)
tree26154e1e9990f1bb4525d3e3fb5b6dac2c2c1da2 /util/system/dynlib.cpp
parentcb68f224c46a8ee52ac3fdd2a32534b8bb8dc134 (diff)
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/system/dynlib.cpp')
-rw-r--r--util/system/dynlib.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/system/dynlib.cpp b/util/system/dynlib.cpp
index 9d2541c25f1..f5084f2f685 100644
--- a/util/system/dynlib.cpp
+++ b/util/system/dynlib.cpp
@@ -53,7 +53,7 @@ private:
(void)flags;
if (!Module) {
- ythrow yexception() << DLLERR().data();
+ ythrow yexception() << DLLERR().data();
}
}
@@ -81,7 +81,7 @@ public:
void* symbol = SymOptional(name);
if (symbol == nullptr) {
- ythrow yexception() << DLLERR().data();
+ ythrow yexception() << DLLERR().data();
}
return symbol;
@@ -100,7 +100,7 @@ TDynamicLibrary::TDynamicLibrary() noexcept {
}
TDynamicLibrary::TDynamicLibrary(const TString& path, int flags) {
- Open(path.data(), flags);
+ Open(path.data(), flags);
}
TDynamicLibrary::~TDynamicLibrary() = default;