This file is indexed.

/usr/include/qxcppunit/qxcppunit_global.h is in libqxcppunit-dev 0.9.2-0ubuntu3.

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
/*!
 * \file  qxcppunit_global.h
 *
 * \brief Declares global functions, macros, symbols and the like.
 */

#ifndef QXCPPUNIT_GLOBAL_H
#define QXCPPUNIT_GLOBAL_H

#include <Qt/qglobal.h>

/*!
 * Macro to export symbols to DLL with VC++:
 *
 * - QXCPPUNIT_DLL_BUILD must be defined when building the DLL.
 * - QXCPPUNIT_DLL must be defined if linking against the DLL.
 * - If none of the above are defined then you are building or
 *   linking against the static library.
 */

#if defined(QXCPPUNIT_DLL_BUILD)
#  define QXCPPUNIT_EXPORT Q_DECL_EXPORT
#elif defined (QXCPPUNIT_DLL)
#  define QXCPPUNIT_EXPORT Q_DECL_IMPORT
#else
#  define QXCPPUNIT_EXPORT
#endif

#endif // QXCPPUNIT_GLOBAL_H