summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--zend/symbol.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/zend/symbol.h b/zend/symbol.h
index 66488dc..fcad9eb 100644
--- a/zend/symbol.h
+++ b/zend/symbol.h
@@ -99,13 +99,7 @@ public:
* @param name Name of the function
*/
Symbol(void *handle, const char *name) :
- _method(dlsym(handle, name)) {}
-
- /**
- * Move constructor
- * @param other
- */
- Symbol(Symbol &&other) = default;
+ _method(DL_FETCH_SYMBOL(handle, name)) {}
/**
* Destructor