# # # patch "HACKING" # from [cd5b8c24ac9a3ab0cb0fd05e3f03b1a7688f018a] # to [ea00d50a87b78b1dfc3a00e5f92c8fe2df9bb810] # ============================================================ --- HACKING cd5b8c24ac9a3ab0cb0fd05e3f03b1a7688f018a +++ HACKING ea00d50a87b78b1dfc3a00e5f92c8fe2df9bb810 @@ -75,6 +75,9 @@ continued to adhere to the dialect we wr - separate pointer and reference types with space. write "int * foo" rather than "int *foo" or "int* foo". + - if you have a const, put that _after_ the main type, but before + any * or &. Example: "set const & foo". + - put the name of a function in the first column of the line it occurs on. the visibility and return type go on the preceeding line.