~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/cached_directory.h

  • Committer: Brian Aker
  • Date: 2010-01-04 00:33:03 UTC
  • mfrom: (1259.3.7 remove-mydir)
  • Revision ID: brian@gaz-20100104003303-wkp8mbm5991kxro8
Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
public:
56
56
  class Entry
57
57
  {
 
58
    Entry();
58
59
  public:
59
60
    std::string filename;
60
 
    Entry(std::string in_name)
 
61
    explicit Entry(std::string in_name)
61
62
      : filename(in_name)
62
63
    {}
63
64
  };