comparison libinterp/parse-tree/pt-colon.h @ 21779:7db94853d12b

use consistent pattern for file inclusion guards * marker.h, ls-utils.h, oct-hdf5.h, pt-colon.h, pt-fcn-handle.h: Use consistent pattern for file inclusion guards. Ensure that symbols on the "#if ! defined" and "#define" lines match.
author John W. Eaton <jwe@octave.org>
date Thu, 26 May 2016 13:42:38 -0400
parents 1473547f50f5
children bac0d6f07a3e
comparison
equal deleted inserted replaced
21778:895971cb50f0 21779:7db94853d12b
19 <http://www.gnu.org/licenses/>. 19 <http://www.gnu.org/licenses/>.
20 20
21 */ 21 */
22 22
23 #if ! defined (octave_pt_colon_h) 23 #if ! defined (octave_pt_colon_h)
24 # define octave_tree_colon 1 24 #define octave_pt_colon_h 1
25 25
26 #include "octave-config.h" 26 #include "octave-config.h"
27 27
28 # include <string> 28 #include <string>
29 29
30 class tree_walker; 30 class tree_walker;
31 31
32 class octave_value; 32 class octave_value;
33 class octave_value_list; 33 class octave_value_list;
34 class octave_lvalue; 34 class octave_lvalue;
35 35
36 # include "pt-exp.h" 36 #include "pt-exp.h"
37 # include "symtab.h" 37 #include "symtab.h"
38 38
39 // Colon expressions. 39 // Colon expressions.
40 40
41 class 41 class
42 tree_colon_expression : public tree_expression 42 tree_colon_expression : public tree_expression