mirror of
https://git.mirrors.martin98.com/https://github.com/gulrak/filesystem
synced 2025-06-04 11:13:58 +08:00
Updated readme, added error handling for conflicting options.
This commit is contained in:
parent
6b30995e41
commit
9a047b9f8d
10
README.md
10
README.md
@ -487,6 +487,16 @@ to the expected behavior.
|
|||||||
|
|
||||||
## Release Notes
|
## Release Notes
|
||||||
|
|
||||||
|
### v1.3.3 (wip)
|
||||||
|
|
||||||
|
* Pull request [#62](https://github.com/gulrak/filesystem/pull/62), various fixes for
|
||||||
|
better Android support, thanks for the PR
|
||||||
|
* Pull request [#61](https://github.com/gulrak/filesystem/pull/61), `ghc::filesystem` now
|
||||||
|
supports use in projects with disabled exceptions. API signatures using exceptions for
|
||||||
|
error handling are not available in this mode, thanks for the PR (this resolves
|
||||||
|
[#60](https://github.com/gulrak/filesystem/issues/60) and
|
||||||
|
[#43](https://github.com/gulrak/filesystem/issues/43))
|
||||||
|
|
||||||
### [v1.3.2](https://github.com/gulrak/filesystem/releases/tag/v1.3.2)
|
### [v1.3.2](https://github.com/gulrak/filesystem/releases/tag/v1.3.2)
|
||||||
|
|
||||||
* Bugfix for [#58](https://github.com/gulrak/filesystem/issues/58), on MinGW the
|
* Bugfix for [#58](https://github.com/gulrak/filesystem/issues/58), on MinGW the
|
||||||
|
@ -193,6 +193,9 @@
|
|||||||
#if !defined(GHC_WITH_EXCEPTIONS) && (defined(__EXCEPTIONS) || defined(__cpp_exceptions) || defined(_CPPUNWIND))
|
#if !defined(GHC_WITH_EXCEPTIONS) && (defined(__EXCEPTIONS) || defined(__cpp_exceptions) || defined(_CPPUNWIND))
|
||||||
#define GHC_WITH_EXCEPTIONS
|
#define GHC_WITH_EXCEPTIONS
|
||||||
#endif
|
#endif
|
||||||
|
#if !defined(GHC_WITH_EXCEPTIONS) && defined(GHC_RAISE_UNICODE_ERRORS)
|
||||||
|
#error "Can't raise unicode errors whith exception support disabled"
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace ghc {
|
namespace ghc {
|
||||||
namespace filesystem {
|
namespace filesystem {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user