Ignore:
Timestamp:
Jul 5, 2016, 6:35:10 PM (8 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
205ee4e, ed0e67a
Parents:
f96b061
Message:

update comments in code and tests, and add test searchsort

Location:
src/libcfa/containers
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/containers/vector

    rf96b061 ra6151ba  
     1//
     2// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
     3//
     4// The contents of this file are covered under the licence agreement in the
     5// file "LICENCE" distributed with Cforall.
     6//
     7// vector --
     8//
     9// Author           : Thierry Delisle
     10// Created On       : Tue Jul  5 18:00:07 2016
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Tue Jul  5 18:01:35 2016
     13// Update Count     : 2
     14//
     15
    116#pragma once
    217
     
    138153        return this->storage;
    139154}
     155
     156// Local Variables: //
     157// mode: c //
     158// tab-width: 4 //
     159// End: //
  • src/libcfa/containers/vector.c

    rf96b061 ra6151ba  
     1//
     2// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
     3//
     4// The contents of this file are covered under the licence agreement in the
     5// file "LICENCE" distributed with Cforall.
     6//
     7// vector.c --
     8//
     9// Author           : Thierry Delisle
     10// Created On       : Tue Jul  5 18:07:52 2016
     11// Last Modified By : Peter A. Buhr
     12// Last Modified On : Tue Jul  5 18:08:31 2016
     13// Update Count     : 2
     14//
     15
    116#include <containers/vector>
    217
     
    7186        }
    7287}
     88
     89// Local Variables: //
     90// mode: c //
     91// tab-width: 4 //
     92// End: //
Note: See TracChangeset for help on using the changeset viewer.