~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_tempfile.cc

  • Committer: Toru Maesaka
  • Date: 2008-12-11 07:45:27 UTC
  • mto: (670.1.11 devel)
  • mto: This revision was merged to the branch mainline in revision 672.
  • Revision ID: dev@torum.net-20081211074527-yu0cpi5pumqifgg5
Added namespacing for std to .cc files that needed it

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#include <paths.h>
25
25
#endif
26
26
 
27
 
 
 
27
using namespace std;
28
28
 
29
29
/*
30
30
  @brief
71
71
#elif defined(HAVE_MKSTEMP)
72
72
  {
73
73
    File org_file;
74
 
    std::string prefix_str;
 
74
    string prefix_str;
75
75
 
76
76
    prefix_str= prefix ? prefix : "tmp.";
77
77
    prefix_str.append("XXXXXX");