[lldb][NFC] Remove unused STLUtil include and STLUtil.h header

This commit is contained in:
Raphael Isemann 2019-11-28 14:07:44 +01:00
parent a54ef8af89
commit 42c857aa47
2 changed files with 0 additions and 27 deletions

View File

@ -1,26 +0,0 @@
//===-- STLUtils.h ----------------------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_STLUtils_h_
#define liblldb_STLUtils_h_
#include <string.h>
#include <map>
#include <ostream>
#include <vector>
// C string less than compare function object
struct CStringCompareFunctionObject {
bool operator()(const char *s1, const char *s2) const {
return strcmp(s1, s2) < 0;
}
};
#endif // liblldb_STLUtils_h_

View File

@ -9,7 +9,6 @@
#ifndef liblldb_CommandReturnObject_h_
#define liblldb_CommandReturnObject_h_
#include "lldb/Core/STLUtils.h"
#include "lldb/Core/StreamFile.h"
#include "lldb/Utility/StreamString.h"
#include "lldb/Utility/StreamTee.h"