This file is indexed.

/usr/include/Synopsis/TypeAnalysis/OverloadResolver.hh is in libsynopsis0.12-dev 0.12-10.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//
// Copyright (C) 2005 Stefan Seefeld
// All rights reserved.
// Licensed to the public under the terms of the GNU LGPL (>= 2),
// see the file COPYING for details.
//
#ifndef Synopsis_TypeAnalysis_OverloadResolver_hh_
#define Synopsis_TypeAnalysis_OverloadResolver_hh_

#include <Synopsis/PTree.hh>
#include <Synopsis/SymbolLookup.hh>

namespace Synopsis
{
namespace TypeAnalysis
{

//. Resolve a function call in the context of the given scope.
SymbolLookup::Symbol const *resolve_funcall(PTree::FuncallExpr const *funcall,
					    SymbolLookup::Scope const *);

}
}

#endif