summaryrefslogtreecommitdiff
path: root/cpp/include/Ice/Const.h
blob: b79930f96420fd7986f420024bc8210d8ea9b733 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// **********************************************************************
//
// Copyright (c) 2001
// ZeroC, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************

#ifndef ICE_CONST_H
#define ICE_CONST_H

#if defined(_WIN32)
#    define ICE_INT64_LITERAL(n) n##i64
#elif defined(__linux__) && defined(i386)
#    define ICE_INT64_LITERAL(n) n##LL
#else
#    error "Unsupported operating system or platform!"
#endif

#endif