Error opening file in Dev-C++

How can I solve this problem? As soon as it opens the file, it pops up.
Exact same problem here, any accentuation even in commentary breaks the code, have been using VS Code until they fix it, but IDK for how much time, they haven't touched this repository for 2 weeks now because they are working on the ComparisonResearch one, might take a while for this bug to be fixed
This report needs more info to be able to do anything with it. What file are you trying to open? What is the codepage of the file?
@FelipeEstevanatto Who is "they"? This is an open source project. Grab the source and submit a fix.
@FMXExpress I have the same problem, Im trying to open this code saved in a cpp file. I have just installed the .exe, change to gnu c++11 and tried it ` /******* Vacunacion.h *************************************************/ / *
- @file Vacunacion.h
- Fichero de cabecera de la clase Vacunacion
- @version 1.1
- @author Jose Fco. Garcia, Jesus Albert
- @date 22/02/2021
***************************************************************************/
#ifndef VACUNACION_H #define VACUNACION_H
#include
using namespace std;
/**
-
@brief Clase para el manejo de Vacunacion
-
Clase para manejar la informacion de vacunaciones. */ class Vacunacion { public: // Constructor por defecto Vacunacion(); // Operaciones para devolver información de la persona vacunada string DevuelveIdentificador(); // Operacion para modificar información de la persona vacunada void PonIdentificador(string); bool LeerDeFichero(ifstream &); void Mostrar();
private:
// Atributos propios de una persona vacunada: string identificador; ///< Identificador de la persona vacunada, formato 0000AAA string nombre; ///< Nombre de la persona string vacuna; ///< Vacuna que se le suministra string f_primera_dosis; ///< Fecha de la primera dosis string f_segunda_dosis; ///< Fecha de la segunda dosis };
#endif `
I've found workaround, just open with file->open, not history, or something else.
@maximilliangreat You are right!