From 554885b83e0bddfad11bfcb4aa30fcda53f7fa19 Mon Sep 17 00:00:00 2001 From: David Capello Date: Tue, 29 Mar 2016 12:53:16 -0300 Subject: [PATCH] Avoid warning about multiline comment on gcc --- src/undo/undo_tests.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/undo/undo_tests.cpp b/src/undo/undo_tests.cpp index 9ddbce7fa..fce7808d6 100644 --- a/src/undo/undo_tests.cpp +++ b/src/undo/undo_tests.cpp @@ -1,5 +1,5 @@ // Aseprite Undo Library -// Copyright (C) 2015 David Capello +// Copyright (C) 2015-2016 David Capello // // This file is released under the terms of the MIT license. // Read LICENSE.txt for more information. @@ -75,7 +75,7 @@ TEST(Undo, Basics) TEST(Undo, Tree) { // 1 --- 2 - // \ + // | // ------ 3 --- 4 int model = 0; Cmd cmd1(model, 1, 0); @@ -114,7 +114,7 @@ TEST(Undo, Tree) TEST(Undo, ComplexTree) { // 1 --- 2 --- 3 --- 4 ------ 7 --- 8 - // \ / + // | | // ------------- 5 --- 6 int model = 0; Cmd cmd1(model, 1, 0);