mambolevis

Results 24 comments of mambolevis

Let me explain it with one example. Consider that your current file is `main.cpp` and you have a total of 6 buffers open: `mean.cpp, header.h, src, project, *scratch*, *Messsages*` If...

Hi, Let me first tell you that the solution suggested for @3246251196 to navigate through the code using cscope and etags is working properly. Now I can jump using M-....

@Sarcasm I modify my emacs_Shell.bat to call environment variables msvc x64, then, I run `clang-cl.exe -v -o out main.cpp -o main.exe` and the result is: ``` clang-cl.exe -v -o out...

Thanks. I setup .clang_complete flags as follows: ``` -target i686-pc-windows-msvc -fms-extensions -fms-compatibility -fms-compatibility-version=17.00 -fdelayed-template-parsing -I/inc ``` To be sure that .clan_compile file is loaded, I use`(add-hook 'irony-mode-hook 'irony-cdb-autosetup-compile-options)` , I...

Hi, now it is working, thanks!! Important: 1) It was not necessary to add -std=c++11, it works just with the last suggestion from @Sarcasm. Now, I get completion from `std::unique_ptr`...

@Sarcasm > are you talking about vcvars here? yes, either (x86 or x64) > This happens even in simple setup, e.g: when not using any external headers? yes, it happens...

@3246251196 Hi, very good news. Thanks. What are the minimum .clang_complete flags according to your last tests?

@3246251196 > I am actually curious how your setup works at all. The output suggests that you are using 64 bit version of Clang. Irony needs to either be manually...

@3246251196 I only use the CMake GUI.

I'm using clang 3.9.1 the latest one. When I try to use Template argument deduction for class templates: ``` template struct MyContainer { T val; MyContainer() : val(){} MyContainer(T val)...