~tsarev/percona-server/5.5-processlist_rows_stats-sporadic_fails-fix

« back to all changes in this revision

Viewing changes to HandlerSocket-Plugin-for-MySQL/libhsclient/util.hpp

Merge release branch, update version

Create release-5.5.12-20.3 with 5.5.12 changes and release branch from
5.5.11. Update versions to 5.5.12 and 20.3.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
// vim:sw=2:ai
 
3
 
 
4
/*
 
5
 * Copyright (C) 2010 DeNA Co.,Ltd.. All rights reserved.
 
6
 * See COPYRIGHT.txt for details.
 
7
 */
 
8
 
 
9
#ifndef DENA_UTIL_HPP
 
10
#define DENA_UTIL_HPP
 
11
 
 
12
namespace dena {
 
13
 
 
14
/* boost::noncopyable */
 
15
struct noncopyable {
 
16
  noncopyable() { }
 
17
 private:
 
18
  noncopyable(const noncopyable&);
 
19
  noncopyable& operator =(const noncopyable&);
 
20
};
 
21
 
 
22
};
 
23
 
 
24
#endif
 
25