Patch #3052 2010-08-27 23:58

bioinfornatics

D programming
Download
3052-D_programming.patch (555 bytes)
Category
Plugin::FeatureAdd
Status
Rejected
Close date
2010-08-28 21:42
Assigned to
 
#ifdef __WXMSW__
// this compiler is valid only in windows

#ifndef COMPILER_LCC_H
#define COMPILER_LCC_H

#include <compiler.h>

class CompilerLCC : public Compiler
{
    public:
        CompilerLCC();
        virtual ~CompilerLCC();
        virtual bool IsValid();
        virtual void Reset();
        virtual void LoadDefaultRegExArray();
        virtual AutoDetectResult AutoDetectInstallationDir();
    protected:
        virtual Compiler* CreateCopy();
    private:
        bool m_RegistryUpdated;
};

#endif // COMPILER_LCC_H

#endif // __WXMSW__
afb 2010-08-28 21:42

This looks like the wrong file, compilerLCC.h instead of compilerLDC.h

A working version of compilerLDC.h is in svn now.