office-gobmx/o3tl
Stephan Bergmann 8ceb988dcc Don't run CompilerTest_o3tl_* with COMPILER_PLUGIN_TOOL=...
...similar to 2228203a82 "Don't run
CompilerTest_compilerplugins_clang with COMPILER_PLUGIN_TOOL=...", as otherwise
e.g., `make check COMPILER_PLUGIN_TOOL=fakebool` failed with

> o3tl/qa/compile-temporary.cxx:22:8: error: call to deleted function 'temporary'
>     f(&o3tl::temporary(n)); // expected-error {{}} expected-note@o3tl/temporary.hxx:* 0+ {{}}
>        ^~~~~~~~~~~~~~~
> include/o3tl/temporary.hxx:22:36: note: candidate function [with T = int] has been explicitly deleted
> template <typename T> constexpr T& temporary(T&) = delete;
>                                    ^
> include/o3tl/temporary.hxx:21:36: note: candidate function [with T = int &]
> template <typename T> constexpr T& temporary(T&& x) { return x; }
>                                    ^

Change-Id: I4dfa433708c064413f365375c84b85ced63c8d4e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/94871
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2020-05-26 18:57:47 +02:00
..
qa Adapt o3tl::span to removal of std::span::cbegin et al 2020-02-22 19:41:50 +01:00
CompilerTest_o3tl_temporary.mk
CompilerTest_o3tl_unsafe_downcast.mk Introduce o3tl::unsafe_downcast for known-good dynamic_cast downcasts 2019-10-08 18:07:57 +02:00
CppunitTest_o3tl_tests.mk array_view was changed to span in upcoming C++20 2019-01-13 11:27:30 +01:00
Makefile
Module_o3tl.mk Don't run CompilerTest_o3tl_* with COMPILER_PLUGIN_TOOL=... 2020-05-26 18:57:47 +02:00
README o3tl: rename compat_functional header 2015-08-17 16:38:30 +00:00

Very basic template functionality, a bit like boost or stl, but specific to LibO

o3tl stands for "OOo [o3, get it?] template library"

From [http://blog.thebehrens.net/2006/01/15/update-cow_wrapper-is-available-now/]
The scope for o3tl is admittedly kind of ambitious, as it should contain "...very basic (template)
functionality, comparable to what's provided by boost or stl, but specific to OOo (what comes to mind
are e.g. stl adapters for our own data types and UNO, and stuff that could in principle be upstreamed
to boost, but isn't as of now)."

== Class overview ==

[git:o3tl/inc/o3tl/cow_wrapper.hxx]
A copy-on-write wrapper.

[git:o3tl/inc/o3tl/lazy_update.hxx]
This template collects data in input type, and updates the output type with the given update functor,
but only if the output is requested. Useful if updating is expensive, or input changes frequently, but
output is only comparatively seldom used.

[git:o3tl/inc/o3tl/range.hxx]
Represents a range of integer or iterator values.

[git:o3tl/inc/o3tl/vector_pool.hxx]
Simple vector-based memory pool allocator.

[git:o3tl/inc/o3tl/functional.hxx]
Some more templates, leftovers in spirit of STLport's old functional
header that are not part of the C++ standard (STLport has been
replaced by direct use of the C++ STL in LibreOffice).