diff options
author | Adam Lesinski <adamlesinski@google.com> | 2015-10-02 01:19:25 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2015-10-02 01:19:25 +0000 |
commit | bda375fa41c88e6b2f81a8cd88fc5fdda62bc723 (patch) | |
tree | b58284b4569e867c39969db67a6f97a31b9f1213 /include | |
parent | 0c4ad786f5a3546c85c0c2f8cb006f59311661ac (diff) | |
parent | c6c6ab50bc11d55f3135312ceccbcf0c400b437e (diff) | |
download | core-bda375fa41c88e6b2f81a8cd88fc5fdda62bc723.tar.gz core-bda375fa41c88e6b2f81a8cd88fc5fdda62bc723.tar.bz2 core-bda375fa41c88e6b2f81a8cd88fc5fdda62bc723.zip |
am c6c6ab50: Merge "Implement C++11 move semantics for android::FileMap"
* commit 'c6c6ab50bc11d55f3135312ceccbcf0c400b437e':
Implement C++11 move semantics for android::FileMap
Diffstat (limited to 'include')
-rw-r--r-- | include/utils/FileMap.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/utils/FileMap.h b/include/utils/FileMap.h index afd7bfd7b..7d372e1dc 100644 --- a/include/utils/FileMap.h +++ b/include/utils/FileMap.h @@ -52,6 +52,9 @@ class FileMap { public: FileMap(void); + FileMap(FileMap&& f); + FileMap& operator=(FileMap&& f); + /* * Create a new mapping on an open file. * |