Merge branch 'master' into stable

This commit is contained in:
Simon Cruanes 2014-05-23 00:29:23 +02:00
commit 67ae41159f
3 changed files with 16 additions and 0 deletions

View file

@ -69,6 +69,10 @@ qtest: qtest-clean build
@echo
./qtest_all.native
push-stable: all
git checkout stable && git merge master && oasis setup && \
git commit -a 'oasis'
test-all: test qtest
tags:

View file

@ -28,6 +28,12 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
type t = string
let equal a b = a=b
let compare = String.compare
let hash s = Hashtbl.hash s
type 'a gen = unit -> 'a option
type 'a sequence = ('a -> unit) -> unit

View file

@ -29,6 +29,12 @@ Consider using KMP instead. *)
type t = string
val equal : t -> t -> bool
val compare : t -> t -> int
val hash : t -> int
type 'a gen = unit -> 'a option
type 'a sequence = ('a -> unit) -> unit