22 lines
599 B
C++
22 lines
599 B
C++
//===- DiagnosticLineInfo.h -----------------------------------------------===//
|
|
//
|
|
// The MCLinker Project
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#ifndef MCLD_LD_DIAGNOSTICLINEINFO_H_
|
|
#define MCLD_LD_DIAGNOSTICLINEINFO_H_
|
|
|
|
namespace mcld {
|
|
|
|
/** \class DiagnosticLineInfo
|
|
* \brief Map the address to the line of code.
|
|
*/
|
|
class DiagnosticLineInfo {};
|
|
|
|
} // namespace mcld
|
|
|
|
#endif // MCLD_LD_DIAGNOSTICLINEINFO_H_
|