Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: installer/src/installer-lib/DLL.h

Issue 29329159: Issue #1185 - Fix formatting in installer-lib and its tests (Closed)
Patch Set: Created Oct. 15, 2015, 7:03 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « installer/src/custom-action/close_application.cpp ('k') | installer/src/installer-lib/DLL.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: installer/src/installer-lib/DLL.h
===================================================================
--- a/installer/src/installer-lib/DLL.h
+++ b/installer/src/installer-lib/DLL.h
@@ -21,12 +21,12 @@
/**
* Accessor function for the singleton.
*/
- static DllModule & Module();
+ static DllModule& Module();
/**
* Hook function to call on DLL attach.
*/
- static void Attach( HINSTANCE handle );
+ static void Attach(HINSTANCE handle);
/**
* Hook function to call on DLL detach.
@@ -42,12 +42,12 @@
/**
* The singleton value.
*/
- static std::shared_ptr< DllModule > singleton;
+ static std::shared_ptr<DllModule> singleton;
/**
* Private constructor ensures use of accessor function only.
*/
- DllModule( HINSTANCE handle );
+ DllModule(HINSTANCE handle);
/**
* Windows handle for the instance of the DLL.
@@ -59,7 +59,7 @@
*
* Implemented as a smart pointer for deferred evaluation of the system call to get the module name.
*/
- std::shared_ptr< std::wstring > name;
+ std::shared_ptr<std::wstring> name;
};
#endif
« no previous file with comments | « installer/src/custom-action/close_application.cpp ('k') | installer/src/installer-lib/DLL.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld