[Scummvm-git-logs] scummvm master -> eb7793d74986f9377061f46de84615536d7db751

grisenti noreply at scummvm.org
Tue Jun 20 14:22:20 UTC 2023


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
eb7793d749 HPL1: Remove Hpl1::Std::pair


Commit: eb7793d74986f9377061f46de84615536d7db751
    https://github.com/scummvm/scummvm/commit/eb7793d74986f9377061f46de84615536d7db751
Author: grisenti (emanuele at grisenti.net)
Date: 2023-06-20T16:21:52+02:00

Commit Message:
HPL1: Remove Hpl1::Std::pair

Changed paths:
  R engines/hpl1/std/pair.h


diff --git a/engines/hpl1/std/pair.h b/engines/hpl1/std/pair.h
deleted file mode 100644
index c4ad76bb54e..00000000000
--- a/engines/hpl1/std/pair.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/* ScummVM - Graphic Adventure Engine
- *
- * ScummVM is the legal property of its developers, whose names
- * are too numerous to list here. Please refer to the COPYRIGHT
- * file distributed with this source distribution.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program.  If not, see <http://www.gnu.org/licenses/>.
- *
- */
-
-#ifndef HPL1_STD_PAIR_H
-#define HPL1_STD_PAIR_H
-
-namespace Hpl1 {
-namespace Std {
-
-template<typename T1, typename T2>
-struct pair {
-	pair(const T1 &f, const T2 &s) : first(f), second(s) {}
-
-	T1 first;
-	T2 second;
-};
-
-} // namespace Std
-
-} // namespace Hpl1
-
-#endif




More information about the Scummvm-git-logs mailing list