mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Revert "Mover.h: let move be defined"
This reverts commitd4ea07705a
.d4ea0770
lead to a compile error with gcc 4.6. The error is likely due to that version's weak C++11 support. This commit revertsd4ea0770
in order to preserve compilation with gcc 4.6 for alpha1.
This commit is contained in:
parent
69e3e00603
commit
ee7d78d1dc
12
src/Mover.h
12
src/Mover.h
@ -27,13 +27,7 @@ namespace support { class FileName; }
|
|||||||
class Mover
|
class Mover
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
virtual ~Mover() = default;
|
virtual ~Mover() {}
|
||||||
Mover(Mover &&) = default;
|
|
||||||
Mover & operator=(Mover &&) = default;
|
|
||||||
Mover(Mover const &) = default;
|
|
||||||
Mover & operator=(Mover const &) = default;
|
|
||||||
|
|
||||||
Mover() = default;
|
|
||||||
|
|
||||||
/** Copy file @c from to @c to.
|
/** Copy file @c from to @c to.
|
||||||
* This version should be used to copy files from the original
|
* This version should be used to copy files from the original
|
||||||
@ -115,7 +109,9 @@ protected:
|
|||||||
class SpecialisedMover : public Mover
|
class SpecialisedMover : public Mover
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
SpecialisedMover() = default;
|
SpecialisedMover() {}
|
||||||
|
|
||||||
|
virtual ~SpecialisedMover() {}
|
||||||
|
|
||||||
/** @c command should be of the form
|
/** @c command should be of the form
|
||||||
* <code>
|
* <code>
|
||||||
|
Loading…
Reference in New Issue
Block a user