| //===----------------------------------------------------------------------===// |
| // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| // See https://llvm.org/LICENSE.txt for license information. |
| // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| //===----------------------------------------------------------------------===// |
| // template<class Engine, size_t w, class UIntType> |
| // class independent_bits_engine |
| // independent_bits_engine& operator=(const independent_bits_engine&); |
| typedef std::independent_bits_engine<std::ranlux24, 32, unsigned> E; |
| typedef std::independent_bits_engine<std::ranlux48, 64, unsigned long long> E; |