Skip to content

Commit 12327a6

Browse files
committed
More clean up
1 parent cfd04af commit 12327a6

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

include/pcg/pcg_extras.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333

3434
#include <cstdint>
3535
#include <type_traits>
36+
#include <iostream>
3637

3738
#ifdef __GNUC__
3839
#include <cxxabi.h>

include/pcg/pcg_random.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@
7373

7474
#include <cstdint>
7575
#include <cassert>
76-
#include <iostream>
7776

7877
#ifdef _MSC_VER
7978
#pragma warning(disable:4146)

include/pcg/pcg_uint128.hpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#pragma once
12
/*
23
* PCG Random Number Generation for C++
34
*
@@ -33,8 +34,6 @@
3334
* than hand-coded assembly or direct CPU support.
3435
*/
3536

36-
#ifndef PCG_UINT128_HPP_INCLUDED
37-
#define PCG_UINT128_HPP_INCLUDED 1
3837

3938
#include <cstdint>
4039

@@ -997,4 +996,3 @@ uint_x4<UInt32,uint64_t> operator>>(const uint_x4<UInt32,uint64_t>& v,
997996

998997
} // namespace pcg_extras
999998

1000-
#endif // PCG_UINT128_HPP_INCLUDED

0 commit comments

Comments
 (0)