diff options
author | Matthew Hodgson <matthew@matrix.org> | 2015-06-27 01:15:23 +0200 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2015-06-27 01:15:23 +0200 |
commit | 09d4125ff164f5ca686d12ccb0790c35ce721a6b (patch) | |
tree | 7ac8192180180705327d5090c5e603f54ddde2a0 /src/memory.cpp | |
parent | fe958472453b1bac99854a419ef667d8f2cd351d (diff) |
Rename axolotlpp as olm to avoid confusion with Axolotl-the-spec and Axolotl-the-OWS-libraries at moxie's request
Diffstat (limited to 'src/memory.cpp')
-rw-r--r-- | src/memory.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/memory.cpp b/src/memory.cpp index deb3076..16a4683 100644 --- a/src/memory.cpp +++ b/src/memory.cpp @@ -12,10 +12,10 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -#include "axolotl/memory.hh" +#include "olm/memory.hh" -void axolotl::unset( +void olm::unset( void volatile * buffer, std::size_t buffer_length ) { char volatile * pos = reinterpret_cast<char volatile *>(buffer); @@ -26,7 +26,7 @@ void axolotl::unset( } -bool axolotl::is_equal( +bool olm::is_equal( std::uint8_t const * buffer_a, std::uint8_t const * buffer_b, std::size_t length |