aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/slime/type_traits.cpp
blob: 1f5dd350c28cd47052312039a5aca3d722222c34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "type_traits.h"

namespace vespalib {
namespace slime {

const bool TypeTraits<BOOL>::unsetValue;
const int64_t TypeTraits<LONG>::unsetValue;
const double TypeTraits<DOUBLE>::unsetValue = 0.0;
const Memory TypeTraits<STRING>::unsetValue;
const Memory TypeTraits<DATA>::unsetValue;

} // namespace vespalib::slime
} // namespace vespalib