/usr/include/givaro/givbits.inl is in libgivaro-dev 3.7.2-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 22 23 24 25 26 27 28 29 30 | // ==========================================================================
// $Source: /var/lib/cvs/Givaro/src/kernel/bstruct/givbits.inl,v $
// Copyright(c)'1994-2009 by The Givaro group
// This file is part of Givaro.
// Givaro is governed by the CeCILL-B license under French law
// and abiding by the rules of distribution of free software.
// see the COPYRIGHT file for more details.
// Author: T. Gautier
// $Id: givbits.inl,v 1.3 2011-02-02 16:23:55 bboyer Exp $
// ==========================================================================
#ifndef __GIVARO_bits_INL
#define __GIVARO_bits_INL
namespace Givaro {
// -- Copy operators
inline
Bits& Bits::copy( const Bits& src )
{ rep.copy( src.rep ); return *this; }
inline
Bits& Bits::logcopy( const Bits& src )
{ rep.copy( src.rep ); return *this; }
inline Bits& Bits::operator= (const Bits& B) { return copy(B); }
//-------------------------------------------------inline << operators
inline std::ostream& operator<< (std::ostream& o, const Bits& a)
{ return a.print(o); }
} // namespace Givaro
#endif // __GIVARO_bits_INL
|