Coverage Report

Created: 2026-04-29 07:00

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openexr/src/lib/OpenEXR/ImfFloatAttribute.cpp
Line
Count
Source
1
//
2
// SPDX-License-Identifier: BSD-3-Clause
3
// Copyright (c) Contributors to the OpenEXR Project.
4
//
5
6
//-----------------------------------------------------------------------------
7
//
8
//  class FloatAttribute
9
//
10
//-----------------------------------------------------------------------------
11
12
#define COMPILING_IMF_FLOAT_ATTRIBUTE
13
14
#include <ImfFloatAttribute.h>
15
16
#if defined(_MSC_VER)
17
// suppress warning about non-exported base classes
18
#    pragma warning(disable : 4251)
19
#    pragma warning(disable : 4275)
20
#endif
21
22
OPENEXR_IMF_INTERNAL_NAMESPACE_SOURCE_ENTER
23
24
template <>
25
IMF_EXPORT const char*
26
FloatAttribute::staticTypeName ()
27
299k
{
28
299k
    return "float";
29
299k
}
30
31
template class IMF_EXPORT_TEMPLATE_INSTANCE TypedAttribute<float>;
32
33
OPENEXR_IMF_INTERNAL_NAMESPACE_SOURCE_EXIT