This file is indexed.

/usr/include/primesieve/cancel_callback.hpp is in libprimesieve6-dev-common 5.6.0+ds-1.

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
///
/// @file  cancel_callback.hpp
///
/// Copyright (C) 2013 Kim Walisch, <kim.walisch@gmail.com>
///
/// This file is distributed under the BSD License. See the COPYING
/// file in the top level directory.
///

#ifndef CANCEL_CALLBACK_HPP
#define CANCEL_CALLBACK_HPP

#include <exception>

namespace primesieve {

class cancel_callback : public std::exception { };

} // namespace primesieve

#endif