removing files that got added by rebase
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com> (+1 squashed commits) Squashed commits: [a19269426] fixing more strings Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com> (+1 squashed commits) Squashed commits: [d2a049324] fixing more strings Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com> (+1 squashed commits) Squashed commits: [a1ff4c101] trying to build Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -12,6 +12,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "CryLegacyAllocator.h"
|
||||
#include <AzCore/std/string/string.h>
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
// Convenient iteration macros
|
||||
@@ -58,18 +59,6 @@ struct fake_move_helper
|
||||
}
|
||||
};
|
||||
|
||||
// Override for string to ensure proper construction
|
||||
template <>
|
||||
struct fake_move_helper<string>
|
||||
{
|
||||
static void move(string& dest, string& source)
|
||||
{
|
||||
::new((void*)&dest) string();
|
||||
dest = source;
|
||||
source.~string();
|
||||
}
|
||||
};
|
||||
|
||||
// Generic move function: transfer an existing source object to uninitialized dest address.
|
||||
// Addresses must not overlap (requirement on caller).
|
||||
// May be specialized for specific types, to provide a more optimal move.
|
||||
|
||||
Reference in New Issue
Block a user