コード例 #1
0
ファイル: DiagnosticIDs.cpp プロジェクト: caaaaaommm0/clang
static bool WarningOptionCompare(const WarningOption &LHS, StringRef RHS) {
  return LHS.getName() < RHS;
}
コード例 #2
0
static bool WarningOptionCompare(const WarningOption &LHS,
                                 const WarningOption &RHS) {
  return LHS.getName() < RHS.getName();
}