From 061aee2e97969698c0b8fbf64666f746b13c1882 Mon Sep 17 00:00:00 2001 From: Dimitry Date: Wed, 31 Aug 2016 21:53:44 +0300 Subject: fix CompilerStack::absolutePath --- libsolidity/interface/CompilerStack.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsolidity/interface/CompilerStack.cpp b/libsolidity/interface/CompilerStack.cpp index bd79bb73..ec6b5d2e 100644 --- a/libsolidity/interface/CompilerStack.cpp +++ b/libsolidity/interface/CompilerStack.cpp @@ -555,7 +555,7 @@ string CompilerStack::absolutePath(string const& _path, string const& _reference result = result.parent_path(); else if (*it != ".") result /= *it; - return result.string(); + return result.generic_string(); } void CompilerStack::compileContract( -- cgit From 9c3fae823fa5bd2fcf0c4cf651859270c132bb84 Mon Sep 17 00:00:00 2001 From: Dimitry Date: Wed, 31 Aug 2016 22:11:15 +0300 Subject: fix yml script --- appveyor.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 28d53062..afc2914f 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -59,7 +59,6 @@ test_script: - cd %APPVEYOR_BUILD_FOLDER%\build\test\%CONFIGURATION% - copy "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\redist\x86\Microsoft.VC140.CRT\msvc*.dll" . - soltest.exe -- --ipcpath \\.\pipe\geth.ipc - - ps: Stop-Process -Id $ethProc.Id artifacts: - path: solidity-windows.zip -- cgit