Merge pull request #987 from winsvega/develop

fix CompilerStack::absolutePath
This commit is contained in:
chriseth 2016-09-01 01:16:59 +02:00 committed by GitHub
commit 4a26adfb7d
2 changed files with 1 additions and 2 deletions

View File

@ -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

View File

@ -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(