mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Amend 9b1dc338b2
. Fix compilation in GCC 4.9
This commit is contained in:
parent
e94c7871cc
commit
888ff9c114
@ -73,7 +73,7 @@ inline Changer noChange()
|
||||
/// To apply the change conditionally, one can write:
|
||||
/// Changer dummy = (cond) ? changeVar(ref, val) : noChange();
|
||||
template <typename X>
|
||||
inline Changer changeVar(X & ref, X const val)
|
||||
inline RefChanger<X> changeVar(X & ref, X const val)
|
||||
{
|
||||
auto rc = make_save(ref);
|
||||
ref = val;
|
||||
|
Loading…
Reference in New Issue
Block a user