fix(tester/tools): add _L prefix on include guard

This commit is contained in:
Ronan Abhamon 2018-01-15 09:19:24 +01:00
parent 26ad07a02e
commit 582aff27af
2 changed files with 6 additions and 6 deletions

View file

@ -25,8 +25,8 @@
// See: http://en.cppreference.com/w/cpp/language/friend
// =============================================================================
#ifndef _PRIVATE_ACCESS_H_
#define _PRIVATE_ACCESS_H_
#ifndef _L_PRIVATE_ACCESS_H_
#define _L_PRIVATE_ACCESS_H_
#include <type_traits>
@ -60,4 +60,4 @@
static_cast<L_INTERNAL_STRUCT_ATTR_SPY(ATTR_NAME)<std::remove_pointer<std::decay<decltype(OBJECT)>::type>::type> *>(nullptr) \
)
#endif // ifndef _PRIVATE_ACCESS_H_
#endif // ifndef _L_PRIVATE_ACCESS_H_

View file

@ -17,8 +17,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef _TESTER_H_
#define _TESTER_H_
#ifndef _L_TESTER_H_
#define _L_TESTER_H_
#include <utility>
@ -54,4 +54,4 @@ LINPHONE_END_NAMESPACE
#define L_GET_PRIVATE(OBJECT) \
LinphonePrivate::Tester::getPrivate(LinphonePrivate::Utils::getPtr(OBJECT))
#endif // ifndef _TESTER_H_
#endif // ifndef _L_TESTER_H_