Changes have been pushed for the project "Fawkes Robotics Software Framework".

Gitweb: http://git.fawkesrobotics.org/fawkes.git
Trac:   http://trac.fawkesrobotics.org

The branch, thofmann/circular-buffer has been updated
  discards  3e612b84fee53a1edfe4a07638065f45102bfc49 (commit)
  discards  1e06bce7001d893f982fec1444d39bdb072d9b82 (commit)
  discards  a679cedb33a3af15dcac88ebfaad10095a5dbb4e (commit)
        to  cd500c4676081ef4684ee13aec56b2fe3fae1420 (commit)
       via  96ff948125aca8f9584c1227eb48d473a98acb33 (commit)
       via  aaac67207154ff8cd19cfdac7793223e4fdaa893 (commit)

This update added new revisions after undoing existing revisions.  That is
to say, the old revision is not a strict subset of the new revision.  This
situation occurs when you --force push a change and generate a repository
containing something like this:

 * -- * -- B -- O -- O -- O (3e612b84fee53a1edfe4a07638065f45102bfc49)
            \
             N -- N -- N (cd500c4676081ef4684ee13aec56b2fe3fae1420)

When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.

http://git.fawkesrobotics.org/fawkes.git/thofmann/circular-buffer

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- *Log* ---------------------------------------------------------------
commit aaac67207154ff8cd19cfdac7793223e4fdaa893
Author:     Till Hofmann <hofm...@kbsg.rwth-aachen.de>
AuthorDate: Fri Aug 15 14:05:22 2014 +0200
Commit:     Till Hofmann <hofm...@kbsg.rwth-aachen.de>
CommitDate: Mon Jan 5 17:21:32 2015 +0100

    core: add CircularBuffer Container
    
    The CircularBuffer is a simple circular buffer which uses a std::deque
    to store the data. It has a fixed size which it automatically maintains
    by removing elements from the front of the buffer if the buffer grows
    too large. It does not allow any element manipulation other than
    push_back() and pop_front().

http://git.fawkesrobotics.org/fawkes.git/commit/aaac672
http://trac.fawkesrobotics.org/changeset/aaac672

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
commit 96ff948125aca8f9584c1227eb48d473a98acb33
Author:     Till Hofmann <hofm...@kbsg.rwth-aachen.de>
AuthorDate: Fri Aug 15 17:25:45 2014 +0200
Commit:     Till Hofmann <hofm...@kbsg.rwth-aachen.de>
CommitDate: Mon Jan 5 17:21:33 2015 +0100

    core: add unit test for CircularBuffer

http://git.fawkesrobotics.org/fawkes.git/commit/96ff948
http://trac.fawkesrobotics.org/changeset/96ff948

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
commit cd500c4676081ef4684ee13aec56b2fe3fae1420
Author:     Till Hofmann <hofm...@kbsg.rwth-aachen.de>
AuthorDate: Fri Aug 15 17:48:24 2014 +0200
Commit:     Till Hofmann <hofm...@kbsg.rwth-aachen.de>
CommitDate: Mon Jan 5 17:21:34 2015 +0100

    core: don't add unit tests to the make target 'all'

http://git.fawkesrobotics.org/fawkes.git/commit/cd500c4
http://trac.fawkesrobotics.org/changeset/cd500c4

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -


- *Summary* -----------------------------------------------------------
 src/libs/core/tests/Makefile                 |   22 ++++++++++++++++++----
 src/libs/core/tests/test_circular_buffer.cpp |    7 ++++---
 src/libs/core/utils/circular_buffer.h        |    2 +-
 3 files changed, 23 insertions(+), 8 deletions(-)


- *Diffs* -------------------------------------------------------------

- *commit* aaac67207154ff8cd19cfdac7793223e4fdaa893 - - - - - - - - - -
Author:  Till Hofmann <hofm...@kbsg.rwth-aachen.de>
Date:    Fri Aug 15 14:05:22 2014 +0200
Subject: core: add CircularBuffer Container

 src/libs/core/utils/circular_buffer.h |  176 +++++++++++++++++++++++++++++++++
 1 files changed, 176 insertions(+), 0 deletions(-)


- *commit* 96ff948125aca8f9584c1227eb48d473a98acb33 - - - - - - - - - -
Author:  Till Hofmann <hofm...@kbsg.rwth-aachen.de>
Date:    Fri Aug 15 17:25:45 2014 +0200
Subject: core: add unit test for CircularBuffer

 src/libs/core/tests/Makefile                 |   43 ++++++++++++
 src/libs/core/tests/test_circular_buffer.cpp |   92 ++++++++++++++++++++++++++
 2 files changed, 135 insertions(+), 0 deletions(-)


- *commit* cd500c4676081ef4684ee13aec56b2fe3fae1420 - - - - - - - - - -
Author:  Till Hofmann <hofm...@kbsg.rwth-aachen.de>
Date:    Fri Aug 15 17:48:24 2014 +0200
Subject: core: don't add unit tests to the make target 'all'

 src/libs/core/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

_Diff for modified files_:
diff --git a/src/libs/core/Makefile b/src/libs/core/Makefile
index ab98983..f20a5e4 100644
--- a/src/libs/core/Makefile
+++ b/src/libs/core/Makefile
@@ -20,7 +20,7 @@ LIBS_libfawkescore = pthread stdc++ m
 ifneq ($(OS),Darwin)
   LIBS_libfawkescore += rt
 endif
-OBJS_libfawkescore = $(patsubst %.cpp,%.o,$(patsubst qa/%,,$(subst 
$(SRCDIR)/,,$(realpath $(wildcard $(SRCDIR)/*.cpp $(SRCDIR)/*/*.cpp 
$(SRCDIR)/*/*/*.cpp)))))
+OBJS_libfawkescore = $(patsubst %.cpp,%.o,$(patsubst qa/%,,$(subst 
$(SRCDIR)/,,$(realpath $(filter-out $(SRCDIR)/tests/%,$(wildcard 
$(SRCDIR)/*.cpp $(SRCDIR)/*/*.cpp $(SRCDIR)/*/*/*.cpp))))))
 HDRS_libfawkescore = $(subst $(SRCDIR)/,,$(wildcard $(SRCDIR)/*.h 
$(SRCDIR)/*/*.h  $(SRCDIR)/*/*/*.h ))
 
 OBJS_all = $(OBJS_libfawkescore)




-- 
Fawkes Robotics Framework                 http://www.fawkesrobotics.org
_______________________________________________
fawkes-commits mailing list
fawkes-commits@lists.kbsg.rwth-aachen.de
https://lists.kbsg.rwth-aachen.de/listinfo/fawkes-commits

Reply via email to