Deleted Added
sdiff udiff text old ( 8090:722a0d28ee83 ) new ( 9181:42807286d6cb )
full compact
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 73 unchanged lines hidden (view full) ---

82{
83 assert(offset + len <= RubySystem::getBlockSizeBytes());
84 memcpy(&m_data[offset], data, len);
85}
86
87DataBlock &
88DataBlock::operator=(const DataBlock & obj)
89{
90 memcpy(m_data, obj.m_data, RubySystem::getBlockSizeBytes());
91 return *this;
92}