Browse Source

CPP: Move base/singleton.h to base/memory/singleton.h

pull/567/head
Philippe Liard 15 years ago
committed by Mihaela Rosca
parent
commit
12367cd828
4 changed files with 3 additions and 3 deletions
  1. +1
    -1
      cpp/CMakeLists.txt
  2. +0
    -0
      cpp/src/base/memory/singleton.h
  3. +1
    -1
      cpp/src/phonenumbers/phonenumberutil.cc
  4. +1
    -1
      cpp/src/phonenumbers/phonenumberutil.h

+ 1
- 1
cpp/CMakeLists.txt View File

@ -309,8 +309,8 @@ install (FILES
install (FILES
"src/base/basictypes.h"
"src/base/memory/singleton.h"
"src/base/scoped_ptr.h"
"src/base/singleton.h"
DESTINATION include/base/
)
install (FILES src/base/synchronization/lock.h


cpp/src/base/singleton.h → cpp/src/base/memory/singleton.h View File


+ 1
- 1
cpp/src/phonenumbers/phonenumberutil.cc View File

@ -33,7 +33,7 @@
#include <unicode/utf8.h>
#include "base/logging.h"
#include "base/singleton.h"
#include "base/memory/singleton.h"
#include "phonenumbers/default_logger.h"
#include "phonenumbers/encoding_utils.h"
#include "phonenumbers/metadata.h"


+ 1
- 1
cpp/src/phonenumbers/phonenumberutil.h View File

@ -28,8 +28,8 @@
#include <vector>
#include "base/basictypes.h"
#include "base/memory/singleton.h"
#include "base/scoped_ptr.h"
#include "base/singleton.h"
#include "phonenumbers/phonenumber.pb.h"
class TelephoneNumber;


Loading…
Cancel
Save