eina: Fix matrix header guard name

Summary:
eina_matrix.h includes matrix2, matrix3, and matrix4, so the header
guards shouldn't specify MATRIX3.

Reviewers: cedric

Subscribers: jpeg

Differential Revision: https://phab.enlightenment.org/D5508
This commit is contained in:
Bryce Harrington 2017-11-21 11:00:53 +09:00 committed by Jean-Philippe Andre
parent ea1f76f980
commit 98fd820648
1 changed files with 3 additions and 3 deletions

View File

@ -15,8 +15,8 @@
* License along with this library.
* If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef EINA_MATRIX3_H_
#define EINA_MATRIX3_H_
#ifndef EINA_MATRIX_H_
#define EINA_MATRIX_H_
#include "eina_quad.h"
@ -1064,4 +1064,4 @@ EAPI Eina_Matrix_Type eina_matrix2_type_get(const Eina_Matrix2 *m);
* @}
*/
#endif /*EINA_MATRIX3_H_*/
#endif /*EINA_MATRIX_H_*/