GCC Code Coverage Report


Directory: ./
File: include/coal/serialization/OBBRSS.h
Date: 2025-04-01 09:23:31
Exec Total Coverage
Lines: 4 4 100.0%
Branches: 2 4 50.0%

Line Branch Exec Source
1 //
2 // Copyright (c) 2021 INRIA
3 //
4
5 #ifndef COAL_SERIALIZATION_OBBRSS_H
6 #define COAL_SERIALIZATION_OBBRSS_H
7
8 #include "coal/BV/OBBRSS.h"
9
10 #include "coal/serialization/fwd.h"
11 #include "coal/serialization/OBB.h"
12 #include "coal/serialization/RSS.h"
13
14 namespace boost {
15 namespace serialization {
16
17 template <class Archive>
18 1418436 void serialize(Archive& ar, coal::OBBRSS& bv, const unsigned int /*version*/) {
19
1/2
✓ Branch 2 taken 709218 times.
✗ Branch 3 not taken.
1418436 ar& make_nvp("obb", bv.obb);
20
1/2
✓ Branch 2 taken 709218 times.
✗ Branch 3 not taken.
1418436 ar& make_nvp("rss", bv.rss);
21 1418436 }
22
23 } // namespace serialization
24 } // namespace boost
25
26 #endif // ifndef COAL_SERIALIZATION_OBBRSS_H
27