42School / norminette

Official 42 norminette
MIT License
944 stars 139 forks source link

struct missing indentation error not caught #340

Open mjy9088 opened 2 years ago

mjy9088 commented 2 years ago

Describe the bug

struct missing indentation error not caught

Erroneous code

/* ************************************************************************** */
/*                                                                            */
/*                                                        :::      ::::::::   */
/*   test.h                                             :+:      :+:    :+:   */
/*                                                    +:+ +:+         +:+     */
/*   By: Juyeong Maing <jmaing@student.42seoul.kr>  +#+  +:+       +#+        */
/*                                                +#+#+#+#+#+   +#+           */
/*   Created: 2022/06/28 01:12:24 by Juyeong Maing     #+#    #+#             */
/*   Updated: 2022/07/07 23:19:07 by Juyeong Maing    ###   ########.fr       */
/*                                                                            */
/* ************************************************************************** */

#ifndef TEST_H

typedef struct s_f
{
}t_f;

#endif

Additional infos

Additional context

typedef struct s_f
{
}t_f;
typedef struct s_f
{
}   t_f;
matthieu42Network commented 1 year ago

duplicate #325