Add line break and comment #endifs

This commit is contained in:
easyaspi314 (Devin) 2018-11-09 11:30:47 -05:00
parent ca14fbdff8
commit 3c49b5c3fa
2 changed files with 3 additions and 2 deletions

View File

@ -128,7 +128,8 @@ public:
map(handle, offset, length, error); map(handle, offset, length, error);
if(error) { throw std::system_error(error); } if(error) { throw std::system_error(error); }
} }
#endif #endif // __cpp_exceptions
/** /**
* `basic_mmap` has single-ownership semantics, so transferring ownership * `basic_mmap` has single-ownership semantics, so transferring ownership
* may only be accomplished by moving the object. * may only be accomplished by moving the object.

View File

@ -112,7 +112,7 @@ public:
map(handle, offset, length, error); map(handle, offset, length, error);
if(error) { throw std::system_error(error); } if(error) { throw std::system_error(error); }
} }
#endif #endif // __cpp_exceptions
/** /**
* If this is a read-write mapping and the last reference to the mapping, * If this is a read-write mapping and the last reference to the mapping,