diff options
| author | 2015-01-31 22:56:59 -0200 | |
|---|---|---|
| committer | 2015-02-02 15:37:07 -0200 | |
| commit | 7725256f649719dcce2c50ea84e79d6199dd9a50 (patch) | |
| tree | d9266b5991cc7c6a2c9c6bc55f39dd9c71897d59 /src/core/hle/kernel/session.cpp | |
| parent | Update boost external (diff) | |
| download | yuzu-7725256f649719dcce2c50ea84e79d6199dd9a50.tar.gz yuzu-7725256f649719dcce2c50ea84e79d6199dd9a50.tar.xz yuzu-7725256f649719dcce2c50ea84e79d6199dd9a50.zip | |
Explicitly instantiate constructors/destructors for Kernel objects
This should speed up compile times a bit, as well as enable more liberal
use of forward declarations. (Due to SharedPtr not trying to emit the
destructor anymore.)
Diffstat (limited to 'src/core/hle/kernel/session.cpp')
| -rw-r--r-- | src/core/hle/kernel/session.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/core/hle/kernel/session.cpp b/src/core/hle/kernel/session.cpp new file mode 100644 index 000000000..0594967f8 --- /dev/null +++ b/src/core/hle/kernel/session.cpp | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | // Copyright 2015 Citra Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #include "core/hle/kernel/session.h" | ||
| 6 | #include "core/hle/kernel/thread.h" | ||
| 7 | |||
| 8 | namespace Kernel { | ||
| 9 | |||
| 10 | Session::Session() {} | ||
| 11 | Session::~Session() {} | ||
| 12 | |||
| 13 | } | ||