This file is indexed.

/usr/share/gccxml-0.9/GCC/2.95/stdexcept is in gccxml 0.9.0+cvs20120420-4.

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
#ifndef GCCXML_STDEXCEPT
#define GCCXML_STDEXCEPT

#include_next <stdexcept>

// 19.1/3
using std::logic_error;
using std::domain_error;
using std::invalid_argument;
using std::length_error;
using std::out_of_range;
using std::runtime_error;
using std::range_error;
using std::overflow_error;
using std::underflow_error;

#endif