• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

BlueBrain / MorphIO / 7286001939

21 Dec 2023 08:57AM UTC coverage: 76.104% (-0.8%) from 76.938%
7286001939

Pull #485

github

mgeplf
try scikit-build-core
Pull Request #485: try scikit-build-core

1930 of 2536 relevant lines covered (76.1%)

863.39 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/enums.cpp
1
/* Copyright (c) 2013-2023, EPFL/Blue Brain Project
2
 *
3
 * SPDX-License-Identifier: Apache-2.0
4
 */
5
#include <morphio/enums.h>
6
#include <ostream>
7

8
namespace morphio {
9
namespace enums {
10

11
/** Output stream formatter for MorphologyVersion */
12
std::ostream& operator<<(std::ostream& os, const SomaType v) {
×
13
    switch (v) {
×
14
    case SOMA_SINGLE_POINT:
×
15
        return os << "SOMA_SINGLE_POINT";
×
16
    case SOMA_NEUROMORPHO_THREE_POINT_CYLINDERS:
×
17
        return os << "SOMA_NEUROMORPHO_THREE_POINT_CYLINDERS";
×
18
    case SOMA_CYLINDERS:
×
19
        return os << "SOMA_CYLINDERS";
×
20
    case SOMA_SIMPLE_CONTOUR:
×
21
        return os << "SOMA_SIMPLE_CONTOUR";
×
22

23
    default:
×
24
    case SOMA_UNDEFINED:
25
        return os << "SOMA_UNDEFINED";
×
26
    }
27
}
28

29
}  // namespace enums
30
}  // namespace morphio
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc