summaryrefslogtreecommitdiff
path: root/.gitmodules
blob: c441234d6030e2abb54f2d36fae6a5742ed653fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
[submodule "dictionaries"]
	path = dictionaries
	url = ../dictionaries
	branch = .
[submodule "helpcontent2"]
	path = helpcontent2
	url = ../help
	branch = .
[submodule "translations"]
	path = translations
	url = ../translations
	branch = .
create a plugin that finds methods we can mark as final because they are not override in subclasses. Which is useful both as documentation (telling you that you don't need to worry about subclasses changing the implementation under you), and for performance, letting the compiler elide virtual calls in many cases. Apply the results to a subset of stuff in /include Change-Id: I7b5cc893ec2f343bc356bfc338e4cf531ffba1e0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165054 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>