diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-01-09 17:03:54 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-01-09 23:00:55 +0100 |
commit | 4f846cbc5ab3089648d36f2ba03b980cf7e31c0e (patch) | |
tree | f812e4ddf15df178638752dc6f23388f6326fc3b /basegfx | |
parent | 5cba44179be4eefae428eb9703520972b02b9ac4 (diff) |
EmptyTuple is unused
...since b3c3e116ff0eb9b550b73d3901395c042e31d192 "unusedcode.easy: Removed
unused code"
Change-Id: I472af471c82676b226685bf67ee90857b6607c5e
Reviewed-on: https://gerrit.libreoffice.org/66045
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/Library_basegfx.mk | 1 | ||||
-rw-r--r-- | basegfx/source/tuple/b2ituple.cxx | 26 |
2 files changed, 0 insertions, 27 deletions
diff --git a/basegfx/Library_basegfx.mk b/basegfx/Library_basegfx.mk index 0e428631056c..89a718de11e6 100644 --- a/basegfx/Library_basegfx.mk +++ b/basegfx/Library_basegfx.mk @@ -78,7 +78,6 @@ $(eval $(call gb_Library_add_exception_objects,basegfx,\ basegfx/source/tools/zoomtools \ basegfx/source/tuple/b2dtuple \ basegfx/source/tuple/b2i64tuple \ - basegfx/source/tuple/b2ituple \ basegfx/source/tuple/b3dtuple \ basegfx/source/tuple/b3ituple \ basegfx/source/vector/b2dvector \ diff --git a/basegfx/source/tuple/b2ituple.cxx b/basegfx/source/tuple/b2ituple.cxx deleted file mode 100644 index f70ac73ddf14..000000000000 --- a/basegfx/source/tuple/b2ituple.cxx +++ /dev/null @@ -1,26 +0,0 @@ -/* -*- 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/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#include <basegfx/tuple/b2ituple.hxx> -#include <basegfx/tuple/b2dtuple.hxx> -#include <rtl/instance.hxx> - -namespace { struct EmptyTuple : public rtl::Static<basegfx::B2ITuple, EmptyTuple> {}; } - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |