From bb2bc1a9ca6217e8e9b96d70e8bfa23507bef1cb Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Tue, 25 Aug 2015 17:13:35 +1000 Subject: [PATCH] library_win32: add string constructor --- library_win32.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/library_win32.cpp b/library_win32.cpp index af5ce6a3..5fb0c29a 100644 --- a/library_win32.cpp +++ b/library_win32.cpp @@ -30,6 +30,12 @@ library::library (const char *path): } +//----------------------------------------------------------------------------- +library::library (const std::string &path): + library (path.c_str ()) +{ ; } + + //----------------------------------------------------------------------------- library::~library () {