diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2014-05-15 09:15:10 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-05-15 10:01:25 +0200 |
commit | 525f7b280ff46fe9519e555c4a382e83bcfb8c98 (patch) | |
tree | 688490c085b8d9df33c50626484b8721c2b2f46d /svl/inc/pch/precompiled_svl.cxx | |
parent | 9081583e59ba8d3a776d812fa280a929c88a69f1 (diff) |
update_pch: add svl
55s -> 28s
How to find possible pch candidates:
for i in `git grep -l 'gb_Library_set' -- '*.mk' | sort -u`; do
if [ $(git grep 'precompiled_' $i | wc -l) == 0 ]; then
echo missing: $(sed -n -e '/gb_Library_add_exception_objects/,/))/ p' $i | wc -l) files in $i
else
echo ok: $i
fi
done | sort -h -t' ' -k2
Change-Id: Ib9fe16c0afb6e6687881c987c3af7bf59b929fd4
Diffstat (limited to 'svl/inc/pch/precompiled_svl.cxx')
-rw-r--r-- | svl/inc/pch/precompiled_svl.cxx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/svl/inc/pch/precompiled_svl.cxx b/svl/inc/pch/precompiled_svl.cxx new file mode 100644 index 000000000000..5a04dfa6ad1a --- /dev/null +++ b/svl/inc/pch/precompiled_svl.cxx @@ -0,0 +1,12 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#include "precompiled_svl.hxx" + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |