Chromium Code Reviews| Index: test/library_dirs/subdir/mylib.h |
| =================================================================== |
| --- test/library_dirs/subdir/mylib.h (revision 0) |
| +++ test/library_dirs/subdir/mylib.h (revision 0) |
| @@ -0,0 +1,12 @@ |
| +// Copyright (c) 2012 Google Inc. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef _TEST_LIBRARY_DIRS_SUBDIR_MYLIB_H_ |
|
Mark Mentovai
2013/05/29 13:23:07
Your macros shouldn’t begin with an underscore, th
Dimi Shahbaz
2013/05/29 21:32:41
Done.
|
| +#define _TEST_LIBRARY_DIRS_SUBDIR_MYLIB_H_ |
| + |
| +#include <string> |
| + |
| +std::string my_foo(int); |
| + |
| +#endif // _TEST_LIBRARY_DIRS_SUBDIR_MYLIB_H_ |
|
Mark Mentovai
2013/05/29 13:23:07
Two spaces before the //.
These are both covered
Dimi Shahbaz
2013/05/29 21:32:41
Done.
|