1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

Unbreak the MSVC build: add return to unimplemented functions.

llvm-svn: 158788
This commit is contained in:
Francois Pichet 2012-06-20 04:08:49 +00:00
parent 0db6403960
commit 0391a62964

View File

@ -793,10 +793,12 @@ error_code detail::directory_iterator_increment(detail::DirIterState &it) {
error_code map_file_pages(const Twine &path, off_t file_offset, size_t size,
bool map_writable, void *&result) {
assert(0 && "NOT IMPLEMENTED");
return windows_error::invalid_function;
}
error_code unmap_file_pages(void *base, size_t size) {
assert(0 && "NOT IMPLEMENTED");
return windows_error::invalid_function;
}