From: David Malcolm Date: Mon, 8 Dec 2014 19:05:01 +0000 (+0000) Subject: libgccjit++.h: use indentation to show inheritance X-Git-Tag: releases/gcc-5.1.0~2547 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=53b730ff90bc866123609de78bf5247e6ae328cf;p=thirdparty%2Fgcc.git libgccjit++.h: use indentation to show inheritance gcc/jit/ChangeLog: * libgccjit++.h: Indent the forward declarations of the classes to show the inheritance hierarchy. From-SVN: r218489 --- diff --git a/gcc/jit/ChangeLog b/gcc/jit/ChangeLog index a809566beb27..afe1e66b4937 100644 --- a/gcc/jit/ChangeLog +++ b/gcc/jit/ChangeLog @@ -1,3 +1,8 @@ +2014-12-08 David Malcolm + + * libgccjit++.h: Indent the forward declarations of the classes to + show the inheritance hierarchy. + 2014-12-08 David Malcolm * notes.txt: Show the beginning and ending of diff --git a/gcc/jit/libgccjit++.h b/gcc/jit/libgccjit++.h index 67ed5d5ee1ee..7f6718bf7797 100644 --- a/gcc/jit/libgccjit++.h +++ b/gcc/jit/libgccjit++.h @@ -32,16 +32,19 @@ along with GCC; see the file COPYING3. If not see namespace gccjit { + /* Indentation indicates inheritance. */ class context; - class location; - class field; - class type; - class struct_; - class param; - class function; - class block; - class rvalue; - class lvalue; + class error; + class object; + class location; + class field; + class type; + class struct_; + class function; + class block; + class rvalue; + class lvalue; + class param; /* Errors within the API become C++ exceptions of this class. */ class error