mirror of
https://github.com/vimpunk/mio.git
synced 2025-12-08 01:36:52 +08:00
fixed mult.def. linking error
This commit is contained in:
parent
9c57dc884e
commit
54694df5f7
@ -92,7 +92,7 @@ handle_type open_file(const Path& path, const access_mode mode, std::error_code&
|
||||
return handle;
|
||||
}
|
||||
|
||||
int64_t query_file_size(handle_type handle, std::error_code& error)
|
||||
inline int64_t query_file_size(handle_type handle, std::error_code& error)
|
||||
{
|
||||
error.clear();
|
||||
#ifdef _WIN32
|
||||
@ -407,7 +407,6 @@ bool operator!=(const basic_mmap<CharT, CharTraits>& a,
|
||||
return !(a == b);
|
||||
}
|
||||
|
||||
/*
|
||||
template<typename CharT, typename CharTraits>
|
||||
bool operator<(const basic_mmap<CharT, CharTraits>& a,
|
||||
const basic_mmap<CharT, CharTraits>& b)
|
||||
@ -437,7 +436,6 @@ bool operator>=(const basic_mmap<CharT, CharTraits>& a,
|
||||
{
|
||||
return (a == b) || (a > b);
|
||||
}
|
||||
*/
|
||||
|
||||
} // namespace detail
|
||||
} // namespace mio
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user