This file is indexed.

/usr/include/boost/icl/impl_config.hpp is in libboost1.46-dev 1.46.1-7ubuntu3.

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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*-----------------------------------------------------------------------------+
Author: Joachim Faulhaber
Copyright (c) 2009-2009: Joachim Faulhaber
+------------------------------------------------------------------------------+
   Distributed under the Boost Software License, Version 1.0.
      (See accompanying file LICENCE.txt or copy at
           http://www.boost.org/LICENSE_1_0.txt)
+-----------------------------------------------------------------------------*/
#ifndef  BOOST_ICL_IMPL_CONFIG_HPP_JOFA_091225
#define  BOOST_ICL_IMPL_CONFIG_HPP_JOFA_091225

/*-----------------------------------------------------------------------------+
You can choose an implementation for the basic set and map classes.
Select at most ONE of the following defines
+-----------------------------------------------------------------------------*/

//#define ICL_USE_STD_IMPLEMENTATION
//#define ICL_USE_BOOST_INTERPROCESS_IMPLEMENTATION
//#define ICL_USE_BOOST_MOVE_IMPLEMENTATION

/*-----------------------------------------------------------------------------+
NO define or ICL_USE_STD_IMPLEMENTATION: Choose std::set and std::map as
    implementing containers (default).

ICL_USE_BOOST_INTERPROCESS_IMPLEMENTATION: Choose set and map implementations 
    from boost::interprocess.

ICL_USE_BOOST_MOVE_IMPLEMENTATION: Move aware containers from boost::container
    (NEW) are used. Currently (January 2010) this is only experimental. 
    boost::move from the boost::sandbox has to be used. This is depreciated for 
    production code, as long as move aware containers are not officially 
    accepted into boost. 
+-----------------------------------------------------------------------------*/

#if defined(ICL_USE_BOOST_INTERPROCESS_IMPLEMENTATION)
#define ICL_IMPL_SPACE boost::interprocess
#elif defined(ICL_USE_BOOST_MOVE_IMPLEMENTATION)
#define ICL_IMPL_SPACE boost::container
#else
#define ICL_IMPL_SPACE std
#endif

#endif // BOOST_ICL_IMPL_CONFIG_HPP_JOFA_091225