validity_failure_type is an enum, not a bitflag. Correct example code
that looked like it was trying to treat it as a bitflag, but instead
assumed that any failure was fixable.
- Add example demonstrating use of `significant_digits` in `to_wkt`
- Add example demonstrating use of `significant_digits` in `wkt`
- Add parameter documentation
* Add pack overload that accepts custom allocator
* Refactor packed rtree construction to pack_construct
* Add rtree constructors with support for a pack allocator
* Add copyright to modified files
* Rework constructors to leave pack allocator at the end
* Rename tree_allocator and pack_allocator
* Update list of contributors
* Fix temp_allocator comment
Following discussion in #590, we are identifying support for C++03
as a candidate for removal from future releases of Boost.Geometry.
Issue deprecation warning during compilation in C++03 conformance mode
Users can define BOOST_GEOMETRY_DISABLE_DEPRECATED_03_WARNING to disable it.
* Cross_Product Example
* Update cross_product
- Removes the first empty line
- Uses doxygen commands
- Adds result at the end as comments
- Mentions that the second point is undefined in Example 1
* Update Cross_Product
- Added a missing `
* Update imports.qbk
- Adds [import src/examples/arithmetic/cross_product.cpp]
* Create cross_product.qbk
* Update cross_product.hpp
Refers cross_product example
* Delete cross_product.qbk
Uneccessary
* Update
Deletes .qbk reference
* Update make_qbk.py
* Rename cross_product to cross_product.cpp
* Update
-Shifts example reference to line 115-116
Co-authored-by: Vissarion Fisikopoulos <fisikop@gmail.com>
* A dot_product example for the documentation
Proposed above is the example of a dot product arithmetic operation involving different point concepts as operands. This aims to aid the user in understanding the concept more clearly when the user goes through the documentation.
* Update
- Indent by 4 spaces as per Boost's developer's guidelines for code
- Add appropriate copyright at the beginning of the file
* Update dot_product
- Adds Doxygen commands
- Added comment indicating example number
* Create dot_product.cpp
* Update imports.qbk
-Adds reference to example
* Update dot_product.hpp
-Adds reference to example
* Delete dot_product
Closes#658
Doxygen 1.8.17 reporst this as error:
error: Illegal PREDEFINED format '=', no define name specified
It seems Doxygen output is not affected by removal of the `=` sign.
Closes#678