aboutsummaryrefslogtreecommitdiff
path: root/odb/pgsql/endian-traits.cxx
blob: 67309125c47ce8839fbbb12ef79716ff9afe4273 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// file      : odb/pgsql/endian-traits.cxx
// author    : Constantin Michael <constantin@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#include <odb/pgsql/endian-traits.hxx>

namespace odb
{
  namespace pgsql
  {
    namespace
    {
      endian_traits::endian
      infer_host_endian ()
      {
        short s (1);
        char* c (reinterpret_cast<char*> (&s));

        return *c == 0 ?
          endian_traits::big_endian :
          endian_traits::little_endian;
      }
    }

    const endian_traits::endian endian_traits::host_endian (
      infer_host_endian ());
  }
}