diff --git a/src/RX.cpp b/src/RX.cpp index 743182e8d..9905977de 100644 --- a/src/RX.cpp +++ b/src/RX.cpp @@ -1,7 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// -// taskwarrior - a command line task list manager. // -// Copyright 2006-2013, Paul Beckingham, Federico Hernandez. +// Copyright 2006 - 2014, Paul Beckingham, Federico Hernandez. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal @@ -25,6 +24,7 @@ // //////////////////////////////////////////////////////////////////////////////// +#include #include #include #include diff --git a/src/RX.h b/src/RX.h index 08ce94d4a..2824bc7e2 100644 --- a/src/RX.h +++ b/src/RX.h @@ -1,7 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// -// taskwarrior - a command line task list manager. // -// Copyright 2006-2013, Paul Beckingham, Federico Hernandez. +// Copyright 2006 - 2014, Paul Beckingham, Federico Hernandez. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal diff --git a/test/rx.t.cpp b/test/rx.t.cpp index 01b7578f6..fb0cd35e4 100644 --- a/test/rx.t.cpp +++ b/test/rx.t.cpp @@ -1,7 +1,6 @@ //////////////////////////////////////////////////////////////////////////////// -// taskwarrior - a command line task list manager. // -// Copyright 2006-2013, Paul Beckingham, Federico Hernandez. +// Copyright 2006 - 2014, Paul Beckingham, Federico Hernandez. // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal @@ -25,9 +24,10 @@ // //////////////////////////////////////////////////////////////////////////////// +#include +#include #include #include -#include #include Context context; @@ -88,7 +88,7 @@ int main (int argc, char** argv) ut.ok (r9.match (start, end, text), "e there are matches"); ut.is (start.size (), (size_t) 6, "e == 6 matches"); -#if defined(DARWIN) || defined(CYGWIN) || defined(FREEBSD) +#if defined(DARWIN) || defined(CYGWIN) || defined(FREEBSD) || defined(OPENBSD) text = "this is the end."; ut.pass (text + " =~ /\\bthe/"); ut.pass (text + " =~ /the\\b/");