~ubuntu-branches/ubuntu/trusty/libthrust/trusty

« back to all changes in this revision

Viewing changes to detail/type_traits/has_trivial_assign.h

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Beckmann
  • Date: 2011-05-28 09:32:48 UTC
  • Revision ID: james.westby@ubuntu.com-20110528093248-np3euv5sj7fw3nyv
Tags: upstream-1.4.0
ImportĀ upstreamĀ versionĀ 1.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Copyright 2008-2011 NVIDIA Corporation
 
3
 *
 
4
 *  Licensed under the Apache License, Version 2.0 (the "License");
 
5
 *  you may not use this file except in compliance with the License.
 
6
 *  You may obtain a copy of the License at
 
7
 *
 
8
 *      http://www.apache.org/licenses/LICENSE-2.0
 
9
 *
 
10
 *  Unless required by applicable law or agreed to in writing, software
 
11
 *  distributed under the License is distributed on an "AS IS" BASIS,
 
12
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
13
 *  See the License for the specific language governing permissions and
 
14
 *  limitations under the License.
 
15
 */
 
16
 
 
17
 
 
18
/*! \file type_traits.h
 
19
 *  \brief Temporarily define some type traits
 
20
 *         until nvcc can compile tr1::type_traits.
 
21
 */
 
22
 
 
23
#pragma once
 
24
 
 
25
#include <thrust/detail/config.h>
 
26
#include <thrust/detail/type_traits.h>
 
27
 
 
28
namespace thrust
 
29
{
 
30
 
 
31
namespace detail
 
32
{
 
33
 
 
34
template<typename T> struct has_trivial_assign
 
35
  : public integral_constant<
 
36
      bool,
 
37
      (is_pod<T>::value && !is_const<T>::value)
 
38
#if THRUST_HOST_COMPILER == THRUST_HOST_COMPILER_MSVC
 
39
      || __has_trivial_assign(T)
 
40
#elif THRUST_HOST_COMPILER == THRUST_HOST_COMPILER_GCC
 
41
// only use the intrinsic for >= 4.3
 
42
#if (__GNUC__ >= 4) && (__GNUC_MINOR__ >= 3)
 
43
      || __has_trivial_assign(T)
 
44
#endif // GCC VERSION
 
45
#endif // THRUST_HOST_COMPILER
 
46
    >
 
47
{};
 
48
 
 
49
} // end detail
 
50
 
 
51
} // end thrust
 
52