Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(66)

Unified Diff: Source/wtf/text/CString.cpp

Issue 20300002: Fix trailing whitespace in .cpp, .h, and .idl files (ex. Source/core) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/wtf/text/Base64.cpp ('k') | Source/wtf/text/StringBuffer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/text/CString.cpp
diff --git a/Source/wtf/text/CString.cpp b/Source/wtf/text/CString.cpp
index 78962cf768011c53828e11906498a7e5eed01f61..9b3f65e7da4d83405a6601789fc489d6a2cab287 100644
--- a/Source/wtf/text/CString.cpp
+++ b/Source/wtf/text/CString.cpp
@@ -20,7 +20,7 @@
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
@@ -65,7 +65,7 @@ void CString::init(const char* str, size_t length)
ASSERT(str);
m_buffer = CStringBuffer::createUninitialized(length);
- memcpy(m_buffer->mutableData(), str, length);
+ memcpy(m_buffer->mutableData(), str, length);
m_buffer->mutableData()[length] = '\0';
}
@@ -76,7 +76,7 @@ char* CString::mutableData()
return 0;
return m_buffer->mutableData();
}
-
+
CString CString::newUninitialized(size_t length, char*& characterBuffer)
{
CString result;
« no previous file with comments | « Source/wtf/text/Base64.cpp ('k') | Source/wtf/text/StringBuffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698