summaryrefslogtreecommitdiff
path: root/ios/shared/ios_sharedlo/cxx/mlo_utils.mm
diff options
context:
space:
mode:
Diffstat (limited to 'ios/shared/ios_sharedlo/cxx/mlo_utils.mm')
-rw-r--r--ios/shared/ios_sharedlo/cxx/mlo_utils.mm16
1 files changed, 0 insertions, 16 deletions
diff --git a/ios/shared/ios_sharedlo/cxx/mlo_utils.mm b/ios/shared/ios_sharedlo/cxx/mlo_utils.mm
deleted file mode 100644
index 07c87fe41de2..000000000000
--- a/ios/shared/ios_sharedlo/cxx/mlo_utils.mm
+++ /dev/null
@@ -1,16 +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/.
-
-#include "mlo_utils.h"
-
-CGFloat max(CGFloat a,CGFloat b){
- return a>b? a:b;
-}
-CGFloat min(CGFloat a,CGFloat b){
- return a<b? a:b;
-}