Files
qt-creator/tests/cppmodelmanager/testdata_project1/baz3.h
Miklos Marton 3299239095 C++ Refactoring: Fix the include macros in header files after renaming
Fixes: QTCREATORBUG-4686
Change-Id: If22078bb183910941d8e2a94b0e8629baa2fa8de
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
2020-08-21 06:50:42 +00:00

15 lines
233 B
C++

#ifndef BAZ2_H
#define __BAZ2_H
/*
* This is a test file with a malformed include guard
* to test that the renaming does not touch the guard in similar cases at all.
*/
class Baz {
public:
Baz() {}
};
#endif /* __BAZ2_H */