mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-10 07:06:34 +00:00
hot path: just in case
This commit is contained in:
parent
ab8de72db0
commit
41a53075e5
2 changed files with 10 additions and 0 deletions
|
@ -21,6 +21,9 @@
|
||||||
|
|
||||||
namespace ams::util {
|
namespace ams::util {
|
||||||
|
|
||||||
|
#pragma GCC push_options
|
||||||
|
#pragma GCC optimize ("-O2")
|
||||||
|
|
||||||
/* Forward declare implementation class for Node. */
|
/* Forward declare implementation class for Node. */
|
||||||
namespace impl {
|
namespace impl {
|
||||||
|
|
||||||
|
@ -629,4 +632,6 @@ namespace ams::util {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#pragma GCC pop_options
|
||||||
|
|
||||||
}
|
}
|
|
@ -22,6 +22,9 @@
|
||||||
|
|
||||||
namespace ams::util {
|
namespace ams::util {
|
||||||
|
|
||||||
|
#pragma GCC push_options
|
||||||
|
#pragma GCC optimize ("-O2")
|
||||||
|
|
||||||
namespace impl {
|
namespace impl {
|
||||||
|
|
||||||
class IntrusiveRedBlackTreeImpl;
|
class IntrusiveRedBlackTreeImpl;
|
||||||
|
@ -575,4 +578,6 @@ namespace ams::util {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#pragma GCC pop_options
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue