- 21 Feb, 2020 1 commit
-
-
Rémi Denis-Courmont authored
-
- 17 Feb, 2020 1 commit
-
-
Rémi Denis-Courmont authored
This has become a useless no-op on all platforms.
-
- 10 Apr, 2019 1 commit
-
-
Signed-off-by:
Thomas Guillem <thomas@gllm.fr>
-
- 23 Nov, 2018 1 commit
-
-
Like unique_ptr, make the operator bool() explicit, so that it is only called implicitly when the value may be "contextually converted to bool" (if, while, etc.). Suggested-by:
Filip Roséen <filip@atch.se> Signed-off-by:
Thomas Guillem <thomas@gllm.fr>
-
- 15 Nov, 2018 1 commit
-
-
Add a helper to create RAII wrappers for C shared resources, which automatically call the Hold() and Release() functions associated to the raw pointer. Just declare a new shared resource wrapper type: using InputItemPtr = vlc_shared_data_ptr_type(input_item_t, input_item_Hold, input_item_Release); Then use this new type directly: input_item_t *ptr = /* ... */; InputItemPtr item(ptr); QString name = item->psz_name; InputItemPtr other = item; /* hold automatically */
-
- 21 Aug, 2018 1 commit
-
-
Hugo Beauzée-Luyssen authored
-
- 17 Jul, 2018 1 commit
-
-
Hugo Beauzée-Luyssen authored
-