~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/temporal_format.cc

  • Committer: Monty Taylor
  • Date: 2009-02-10 02:29:23 UTC
  • mto: This revision was merged to the branch mainline in revision 871.
  • Revision ID: mordred@inaugust.com-20090210022923-hvdcg0hg6gs14ysz
Fix for multi-versions of PCRE thing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 * Implementation of the server's date and time string matching utility.
29
29
 */
30
30
 
 
31
 
 
32
#include "drizzled/global.h"
 
33
#include "drizzled/temporal_format.h"
 
34
#include "drizzled/temporal.h"
 
35
 
31
36
#include <string> /** C++ string class used */
32
37
#include <string.h>
33
38
#include <vector>
34
 
#include <pcre.h>
35
 
 
36
 
#include "drizzled/global.h"
37
 
#include "drizzled/temporal_format.h"
38
 
#include "drizzled/temporal.h"
 
39
#include PCRE_HEADER
39
40
 
40
41
namespace drizzled
41
42
{