Skip to content

Commit

Permalink
Applying uncrustify script, reformatting whole source tree.
Browse files Browse the repository at this point in the history
  • Loading branch information
bingmann committed May 21, 2015
1 parent 7d3b8b6 commit 78c00f0
Show file tree
Hide file tree
Showing 36 changed files with 4,642 additions and 2,361 deletions.
8 changes: 5 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@
/config.status
*/Makefile
*/.deps
*.o

# ignore binaries
testsuite/testsuite
wxbtreedemo/wxBTreeDemo
speedtest/speedtest
/testsuite/testsuite
/wxbtreedemo/wxBTreeDemo
/speedtest/speedtest
/speedtest/speedtest-tune
1 change: 1 addition & 0 deletions CPPLINT.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
filter=-legal/copyright,-whitespace/braces,-whitespace/newline,-build/c++11,-whitespace/line_length,-whitespace/indent,-runtime/references,-whitespace/comments,-runtime/int,-build/header_guard,-whitespace/operators,-readability/braces
17 changes: 11 additions & 6 deletions include/stx/btree
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
/** \file btree
* Forwarder header to btree.h
*/

/*
// -*- mode: c++ -*-
/*******************************************************************************
* include/stx/btree
*
* STX B+ Tree Template Classes v0.9
* Copyright (C) 2008-2013 Timo Bingmann <[email protected]>
*
Expand All @@ -29,11 +28,17 @@
* FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
******************************************************************************/

#ifndef _STX_BTREE_
#define _STX_BTREE_

/** \file btree
* Forwarder header to btree.h
*/

#include <stx/btree.h>

#endif // _STX_BTREE_

/******************************************************************************/
16 changes: 10 additions & 6 deletions include/stx/btree.dox
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
/** \file btree.dox
* Contains the doxygen comments. This header is not needed to compile the B+
* tree.
*/

/*
/*******************************************************************************
* include/stx/btree.dox
*
* STX B+ Tree Template Classes v0.9
* Copyright (C) 2008-2013 Timo Bingmann
*
Expand All @@ -30,6 +27,11 @@
* FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
******************************************************************************/

/** \file btree.dox
* Contains the doxygen comments. This header is not needed to compile the B+
* tree.
*/

/** \mainpage STX B+ Tree Template Classes README
Expand Down Expand Up @@ -253,3 +255,5 @@ See the web page http://panthema.net/2007/stx-btree/speedtest/ for speed test
results and a discussion thereof.

*/

/******************************************************************************/
Loading

0 comments on commit 78c00f0

Please sign in to comment.