GCC Code Coverage Report


Directory: ./
File: src/Statistics/StatSort_impl.h
Date: 2026-01-15 15:35:36
Exec Total Coverage
Lines: 3 3 100.0%
Functions: 1 1 100.0%
Branches: 1 1 100.0%

Line Branch Exec Source
1 /***************************************
2 Auteur : Thibaut Oprinsen
3 Mail : thibaut.oprinsen@lapp.in2p3.fr
4 Licence : CeCILL-C
5 ****************************************/
6 #ifndef __STATSORTIMPL_H__
7 #define __STATSORTIMPL_H__
8
9 #include "StatSort.h"
10 #include "StatDaemonManager.h"
11
12 ///Fill the DL1 parameter of the stereo daemon
13 /** @param manager : stat manager to fill
14 * @param data : DaemonStat data to be filled
15 * @return true on success, false otherwise
16 */
17 template<class _TBackend>
18 2 PUncastableBool sortFillDaemonStat(StatDaemonManager<_TBackend> & manager, const DaemonStat & data){
19
1/1
✓ Branch 0 (2→3) taken 2 times.
2 manager.fillStatInfo(data);
20 2 return UNCASTABLE_TRUE;
21 }
22
23 #endif
24