Changeset 457 for cafu/trunk/CaSHL

Show
Ignore:
Timestamp:
01/09/12 23:04:20 (4 months ago)
Author:
Carsten
Message:

Using UltraEdit's multi-line search-and-replace-in-files feature, replaced


^#ifndef _(CAFU|CF|CFS|CA)_(.*)_$
^#define _\1_\2_$

with

#ifndef CAFU_\2_INCLUDED
#define CAFU_\2_INCLUDED

and


^#ifndef _(.*)_HPP_$
^#define _\1_HPP_$

with

#ifndef CAFU_\1_HPP_INCLUDED
#define CAFU_\1_HPP_INCLUDED

Closes #91.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • cafu/trunk/CaSHL/CaSHLWorld.hpp

    r455 r457  
    2424/****************************/ 
    2525 
    26 #ifndef _CASHLWORLD_HPP_ 
    27 #define _CASHLWORLD_HPP_ 
     26#ifndef CAFU_CASHLWORLD_HPP_INCLUDED 
     27#define CAFU_CASHLWORLD_HPP_INCLUDED 
    2828 
    2929#include "../Common/World.hpp"