From 9a050b3e83389c8962f3baa55097578bf1f3c49f Mon Sep 17 00:00:00 2001 From: Dean Michael Berris Date: Tue, 7 Feb 2017 23:35:34 +0000 Subject: [XRay][compiler-rt][NFC] Turn ProudCase functions to humbleCase functions Summary: As pointed out in casual reading of the XRay codebase, that we had some interesting named functions that didn't quite follow the LLVM coding conventions. Reviewers: chandlerc, dblaikie Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D29625 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@294373 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/xray/xray_flags.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/xray/xray_flags.h') diff --git a/lib/xray/xray_flags.h b/lib/xray/xray_flags.h index 2ecf5fb9b..f4e30283b 100644 --- a/lib/xray/xray_flags.h +++ b/lib/xray/xray_flags.h @@ -24,13 +24,13 @@ struct Flags { #include "xray_flags.inc" #undef XRAY_FLAG - void SetDefaults(); + void setDefaults(); }; extern Flags xray_flags_dont_use_directly; inline Flags *flags() { return &xray_flags_dont_use_directly; } -void InitializeFlags(); +void initializeFlags(); } // namespace __xray -- cgit v1.2.3